tags:

views:

152

answers:

2

I want to change JavaScript alert title header from displaying Internet Explorer to another name. is a way to do it?

I found these site in the net:

http://bytes.com/topic/javascript/answers/148721-change-title-bar-javascript-alert-box

http://stackoverflow.com/questions/1905289/how-to-edit-a-javascript-alert-box-title

Which say that there is no solution. Is it true there are no other way?

+2  A: 

Yes, I confirm that. There is no way.

There seems to be a solution for IE using client-side VBScript, but I wouldn't really recommend that path.

Actually, I wouldn't recommend using the alert() function altogether.

Daniel Vassallo
A: 

In my opinion, popping up an alert dialog [and blocking input to the main browser window] is sort of annoying.

It's more appealing to the user if you just stick a div in the middle of the screen. Plus, it's more style-able...

ItzWarty