How To Remove Error Message On Status Bar

  • Thread starter Thread starter jleung
  • Start date Start date
  • Tags Tags
    Error
AI Thread Summary
The discussion revolves around addressing a message displayed in Internet Explorer that states "Done, but with message on page," which is linked to a JavaScript error. Participants note that the message can be eliminated by fixing the underlying error. While there is no direct JavaScript or HTML code to remove the message entirely, it is suggested that using `window.status = '...'` can change the status message to simply "done." Additionally, implementing a try/catch statement around the JavaScript code can help manage the error, allowing the script to continue running without displaying the error message.
jleung
Messages
3
Reaction score
0
On the Internet Explorer, it shows this message:

Done, but with message on page.

Is there a javascript or HTML code to remove that message so that it appears to be normal?
 
Technology news on Phys.org
That's caused by a javascript error. The message will go away once you fix it or handle the error.
If you post the source i'll be able to help you.
 
but isn't there a javascript code that can hide the message? and make the status message to say: done?
 
You can use window.status = '...' to set the status message. But that won't make the error go away as far as i know.
You can put a try/catch statement around your javascript to handle the error. For example:
Code:
try{
//your code here
}catch(x){}
 
Thread 'Is this public key encryption?'
I've tried to intuit public key encryption but never quite managed. But this seems to wrap it up in a bow. This seems to be a very elegant way of transmitting a message publicly that only the sender and receiver can decipher. Is this how PKE works? No, it cant be. In the above case, the requester knows the target's "secret" key - because they have his ID, and therefore knows his birthdate.
Back
Top