I loaded a second.php file in first.php using jquery ajax load function
$(".divclass").click(function(){ $("#divid").load('second.php', { id : $(this).attr('id') }); // alert("view Clicked"); });
the second.php loaded second php content in first.php file success.
but second.php contains some jquery function... in second.php
$(document).ready(function(){ alert("second document jquery"); });this not working... and Back this back javascript also not working when load in first.php but both working when directly calling second.php
what to do