views:

72

answers:

1

Hi!

I am currently dynamically adding content to the page with the help of Jquery. The content that is being added contains some input fields and I need to use some kind of form hint/helper plugin on those.

I have tried this one, but i have no idea how to set it up correctly: http://mucur.name/system/jquery%5Fexample/ whilst dealing with the neccessity of live event.

Here is a part of my current code that allows me to submit each parent form for each input field.

     $(".myclassname").live("keyup", function(){
     $(this).parents("form").submit();
      });

Thanks a lot,

+3  A: 

Here the example of live method of jquery ...

Here is the second example..

Sikender
Thanks! Turned out that the plugin Livequery was what i were looking for!
Industrial