I have a jquery function for a list of links ( <a href="#" class="paging">1</a>
) that I create with $(".paging").click(...
. The problem is that I call the jquery script.js on my main php file, while the links are create on a later stage.
How do I reparse my javascript file? Is there another way to do that, maybe create the jquery click function every time I create the links?