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.
There is no problem in loading in firefox. But in Internet Explorer 7 the summary.template.php file is loading but the changepass.template.php file is not loading. Give me some solution. Whether i have to unload the previous page before loading the next page?. If yes, then give me some tips for unloading the page.
$(function() {
$(".profi").click(function() {
$(".block1").load("views/summary.template.php");
return false;
});
});
$(function() {
$(".changepass").click(function() {
$(".block1").load("views/changepass.template.php");
return false;
});
});