html in javascript confirm box? -


is possible insert html code in javascript confirm box?

i tried & not seem work (i try add html link), see code below

<html>    <head>       <script type="text/javascript"> function show_alert() { confirm(<a href="www.url.com">link text</a>); } </script>    </head>   <body>     <input type="button" onclick="show_alert()" value="show alert box" />   </body> </html> 

i suspect might have use library such "jquery-ui's dialog" working

you can insert plaintext alert(), confirm() , prompt() boxes.


Comments

Popular posts from this blog

jasper reports - Fixed header in Excel using JasperReports -

media player - Android: mediaplayer went away with unhandled events -

python - ('The SQL contains 0 parameter markers, but 50 parameters were supplied', 'HY000') or TypeError: 'tuple' object is not callable -