Hi I'm using following function to goto a proxypage on a click of href. for first click to the href it works fine. but second click onwards the code does not call the window.event.returnValue=true; statement while if i use debugger it works as expected.
function CallDownloadProxy(url)
{
//debugger;
try
{
window.location = url;
window.event.returnValue=true;
}
catch (err)
{
alert(err.description );
}
}
kindly assist if anybody knows about this