I am using JQuery.
I have below JQuery Code which working fine in Firefox, however it is not working in Internet Explorer.
1) Test Alert is not coming in after the Jquery Ajax call. Below is the code.
$('#skywardsLogoutLink').click(function()
{
var reloadUrl = window.location.href;
$.ajax({
type: "POST",
url: "http://localhost:8080/english/index_2011.aspx",
data: { logout: "true" },
success: function (data)
{
alert(reloadUrl);
window.location.href = reloadUrl;
}
});
});
Above code is working fine in Firefox, however not working for Internet Explorer 6.0, I have used test alert to test it but not working. Please suggest
May be worth trying what this guy did: http://patrickgibson.com/news/andsuch/000202.php