javascript - how to change the style of alert box -


i need change style of "ok" button in alert box.

<head>      <script type="text/javascript">          function show_alert() {              alert("hello! alert box!");          }      </script>  </head>  <body>      <input type="button" onclick="show_alert()" value="show alert box" />  </body>

the alert box system object, , not subject css. style of thing need create html element , mimic alert() functionality. jquery ui modal box lot of work you, working have described: link.


Comments