Morning people. How to make my javascript or jquery works in dynamically generated content. Basically, i have created web page that generates contents, base on wha
You need to use live event.
As an example, if your generated content contain a click event, you could do this:
$(".something").live("click", function({ // do something )};