Question

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_example/ 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,

Was it helpful?

Solution

Here the example of live method of jquery ...

Here is the second example..

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top