移転しました。

2006-05-29から1日間の記事一覧

IEのアラートを2つ表示する

IEではJavaScriptのアラートを2つ同時に出せる。かなり嫌味なやり方なので実用度はゼロだけど。サンプルは以下のコードで。 <html> <head> <style type="text/css"> #out { border:2px solid #F0F; width:400px; height:400px; } #in { border:2px solid #00F; width:200px; height:200px; } </style> </head> <body> <div id="out" onmouseout="alert('onmouseout')"> </div></body></html>