i'm loading content index of webpage ajax, have click function apply content, problem click event work if load content manual, if use ajax doesn't work content loaded it, looks got tell site there's new content don't know how.
you need event delegation dynamically added elements.
ex:
$('containerid').on('click','elementid',function(){ //do })
where
containerid //to added elements elementid //on doing click event.
$(document).on(.....
works selecting more specific element increases performance.