0

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

How to edit a JavaScript alert box title?

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

Community
  • 1
  • 1
user329394
  • 161
  • 2
  • 4
  • 7
  • 1
    You can always create your custom alert box. – Secko May 26 '10 at 01:54
  • dear Secko..custom alert box? what's that? can i get more info? i do know how to get window popup by using window.open, but that window doesnot look like alert box...thx – user329394 May 27 '10 at 05:59

3 Answers3

2

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.

Community
  • 1
  • 1
Daniel Vassallo
  • 337,827
  • 72
  • 505
  • 443
0

You can't change the title of alert boxes in javascript. Its browser Property. But you can use Jquery custom Dialogue Boxes instead.

Deepak Gangore
  • 343
  • 1
  • 13
0

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...

Warty
  • 7,237
  • 1
  • 31
  • 49