After the request, the new elements created are not recognized by the event handlers in my jQuery code.
Is there a way to reload the file to re-register these events
simple way to solve this problem
$(document).ready(function(){ $('body').on('click','.someClass',function(){ //do your javascript here.. }); });