vote up 0 vote down star

I am using the following JavaScript function within IE6:

window.onbeforeunload = function() {  
  if (itemChanged) {  
     return 'You have made changes to data on this page.  If you navigate away from this page without first saving your data, the changes will be lost.';  
  }  
};

But when I press the Cancel button on the dialog, I am getting a JavaScript page error:

Error: Unspecified error.

Any ideas?

flag

2 Answers

vote up 2 vote down check

Check your value of (itemChanged). Is it possible something else causes the error? It works fine for me.

Jsbin sample.

link|flag
vote up 0 vote down

Maybe it's because you didn't specify an error? ha ha.

link|flag
+1, well done lol.. – Ian Elliott Jun 18 at 4:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.