Change alert title
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
hi everyone, when I make an alert in Javascript, I receive the title on the alert window "Microsoft Internet Explorer". Can I change it?? Can I change the font or color of the text that I enter in the alert window?? Thanks.
Goodway wrote: Can I change it?? Can I change the font or color of the text that I enter in the alert window?? No. It's a browser-specific utility. All you can do is create your little "alert" web page and use window.showModalDialog (for IE only) or window.open to pop it up. Then you can set the title via the TITLE tag inside your page. Regards, Alvaro