When i use $.get without alert() my code not working into asp.net into Firefox
When i use $.get without alert() my code not working into asp.net ( updatePanel and ScriptManager for asp.net ).
if i use this code in firefox dont work:
jQuery(window).bind(
'onunload'
,
function
() { $.
get
(
'Sair.ashx'
, { user: document.getElementById(
'lblDe'
).innerHTML });
});
if i use this code in firefox work:
jQuery(window).bind(
'onunload'
,
function
() { $.
get
(
'Sair.ashx'
, { user: document.getElementById(
'lblDe'
).innerHTML });
alert('postget');
});
Into Internet Explorer all this code working !