When an element is clicked, I load new elements with the same class into the page.
$(document).ready(function(){
$(".myClass").click(function(){
--load_new_elements with class="myClass"--
});
});
Is it possible to make the script working for new loaded elements as well - or must I each time load a new script for the newly created elements?