I try to load a php file called summary.template.hp when the content in class profi is clicked and load changepass.template.php when the content of class changepass is clicked.
Ateş yükleme hiçbir sorun yoktur. Ancak Internet Explorer 7 summary.template.php dosyası yüklenirken ancak changepass.template.php dosya yükleme değil. Bana çözüm ver. I bir sonraki sayfaya yüklemeden önce önceki sayfayı boşaltmak zorunda olsun?. Eğer evet ise, o zaman bana sayfayı boşaltılması için bazı ipuçları vermek.
$(function() {
$(".profi").click(function() {
$(".block1").load("views/summary.template.php");
return false;
});
});
$(function() {
$(".changepass").click(function() {
$(".block1").load("views/changepass.template.php");
return false;
});
});