Industrial
Industrial

Reputation: 42758

Problem with Jquery live-based function

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,

Upvotes: 1

Views: 112

Answers (1)

sikender
sikender

Reputation: 5921

Here the example of live method of jquery ...

Here is the second example..

Upvotes: 2

Related Questions