Finding Changed Form Element With jQuery

Posted by mTuran on Stack Overflow See other posts from Stack Overflow or by mTuran
Published on 2010-06-08T20:54:20Z Indexed on 2010/06/08 21:02 UTC
Read the original article Hit count: 195

Filed under:
|

Hi, i have a form(id="search_options") and i tracking changes in form by:

    $("#search_options").change(function() { 
        // Bla Bla Bla
    });

In this form i have many inputs and one of is select(id="project_category") and i want to catch if user changed project_category select or another input. How can i done this ? Thanks

© Stack Overflow or respective owner

Related posts about JavaScript

Related posts about jQuery