Tagged Questions
0
votes
1answer
50 views
onbeforeunload works also with refreshing
I did this question few days ago (Java session deleted after page refresh) and I didn't have an answer. Maybe because the problem was in the onbeforeunload event.
with:
<body ...
0
votes
1answer
182 views
javascript event never triggering
I am working on a signup for the mailing list and an trying to make the page and js file not be cached by the browser. Thus, i use a fake querystring. I am trying to get the page to make a new ...
0
votes
1answer
440 views
Silverlight modal dialog interferes with browser's onbeforeunload dialog
I'm in a Silverlight 4.0 project where we have a variety of windows and dialogs, some of which are modal. In the hosting HTML, we've bound the onbeforeunload event so that we can warn users before ...
4
votes
3answers
4k views
Is there anyway to prevent onbeforeunload event from triggering when using internet explorer
I have a function that is suppose to trigger when user closes their browser and I have put the code in the "window.onbeforeunload" function.
The thing is every time if I reloads the page in Internet ...
1
vote
2answers
2k views
onbeforeunload dilemma: iframe breaking vs. annoying message on refresh/back buttons click
I'm implementing a search service called SearchInsideOut.
This search service simply replaces web page results by full web pages (Yes, I used iframe).
The problem I have to deal with is ...