Ben jquery ajax yük fonksiyonunu kullanarak first.php bir second.php dosya yüklenir
$(".divclass").click(function(){ $("#divid").load('second.php', { id : $(this).attr('id') }); // alert("view Clicked"); });
second.php first.php dosya başarısında ikinci php içerik yüklendi.
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
ne yapmak