Colour of Text in a Javascript Alert - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T23:48:10Z http://stackoverflow.com/feeds/question/391143 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/391143/colour-of-text-in-a-javascript-alert 3 Colour of Text in a Javascript Alert Mohit Nanda 2008-12-24T09:58:53Z 2009-01-09T01:47:13Z <p>Is there any way to change style of text, format the text inside a Javascript Alert box. e.g. changing its colour, making it bold, etc.?</p> <p>Also, if there an Alert avalaible with a 'Yes', 'No' button instead of an 'OK'/'Cancel' one?</p> http://stackoverflow.com/questions/391143/colour-of-text-in-a-javascript-alert/391158#391158 22 Answer by Andreas Grech for Colour of Text in a Javascript Alert Andreas Grech 2008-12-24T10:04:41Z 2009-01-09T01:40:57Z <p><strong>No</strong>, I'm afraid that is not possible.</p> <p>With JavaScript, you are limited to only 3 popup boxes: <code>alert</code>, <code>prompt</code> and <code>confirm</code>.</p> <p>If you want to make a more featured popup, you should try using one of the many that exist written in JavaScript, which are built from JavaScript Libraries, such as <a href="http://dev.iceburg.net/jquery/jqModal/" rel="nofollow">this</a></p> http://stackoverflow.com/questions/391143/colour-of-text-in-a-javascript-alert/391254#391254 1 Answer by seanhodges for Colour of Text in a Javascript Alert seanhodges 2008-12-24T11:05:18Z 2008-12-24T11:05:18Z <p>You can't manipulate the standard alert dialogs this way, but you can make your own ones and style them however you like.</p> <p>Check out the custom dialog tutorial on <a href="http://slayeroffice.com/code/custom_alert/" rel="nofollow">slayeroffice.com</a> for an example on how this can be done.</p> http://stackoverflow.com/questions/391143/colour-of-text-in-a-javascript-alert/399385#399385 0 Answer by DFectuoso for Colour of Text in a Javascript Alert DFectuoso 2008-12-30T02:29:18Z 2008-12-30T02:29:18Z <p><a href="http://prototype-window.xilinus.com/" rel="nofollow">http://prototype-window.xilinus.com/</a> this is your man... runs on top of prototype and has AJAX, drag and drop and lots of thing ready waiting for you =)</p> http://stackoverflow.com/questions/391143/colour-of-text-in-a-javascript-alert/426778#426778 0 Answer by alex for Colour of Text in a Javascript Alert alex 2009-01-09T01:47:13Z 2009-01-09T01:47:13Z <p>The best you can do for formatting is the new line character \n </p>