Colour of Text in a Javascript Alert - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T23:48:10Zhttp://stackoverflow.com/feeds/question/391143http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/391143/colour-of-text-in-a-javascript-alert3Colour of Text in a Javascript AlertMohit Nanda2008-12-24T09:58:53Z2009-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#39115822Answer by Andreas Grech for Colour of Text in a Javascript AlertAndreas Grech2008-12-24T10:04:41Z2009-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#3912541Answer by seanhodges for Colour of Text in a Javascript Alertseanhodges2008-12-24T11:05:18Z2008-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#3993850Answer by DFectuoso for Colour of Text in a Javascript AlertDFectuoso2008-12-30T02:29:18Z2008-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#4267780Answer by alex for Colour of Text in a Javascript Alertalex2009-01-09T01:47:13Z2009-01-09T01:47:13Z<p>The best you can do for formatting is the new line character \n </p>