How can I change the title message of an alert box in JavaScript?

share|improve this question

feedback

4 Answers

up vote 4 down vote accepted

This can not be done using javascript. But this can be done using jQuery. May be this url can help u.

http://labs.abeautifulsite.net/projects/js/jquery/alerts/demo/

share|improve this answer
feedback

This cannot be done. The title is browser dependent and you have no control over it. On the other hand you could implement your own alert box using divs and customize it as you like. Here's an example using the jquery dialog plugin.

share|improve this answer
feedback

I am pretty sure this is outside of your control and can not be changed

share|improve this answer
feedback

This earlier question has some good suggestions in the answers : how-to-edit-a-javascript-alert-box-title

share|improve this answer
feedback

Your Answer

 
or
required, but never shown
discard

By posting your answer, you agree to the privacy policy and terms of service.

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