form

form

hi,

I am fairly new jquery and I am a bit suck here
I have the following piece of JS I need to run when input elements of my form are changed. My problem is I have 3 forms on the page and I only want this to trigger for only 1 of my forms. how can I do this?

  1. $(":input").change(function(){ *}
  2. display_unsaved_data();
  3. }

I tried    $("form3").(":input").change(function(){ ...}    but no luck

How can I do this?

Thks