Sha256: 6e1d52a5637053995d67013531bcc1b955f88ad8682c3c95a108cf204c238e99
Contents?: true
Size: 624 Bytes
Versions: 26
Compression:
Stored size: 624 Bytes
Contents
<html> <head> <meta http-equiv="Content-type" content="text/html; charset=utf-8"> <title>Timeout Spec</title> <script type="text/javascript" charset="utf-8"> function timedAlert() { setTimeout('doAlert()', 500); } function doAlert() { alert('blah'); } function timedChange() { setTimeout('doChange()', 500); } function doChange() { document.getElementById('change').innerHTML = 'all done' } </script> </head> <body> <div onclick="timedAlert()" id="alert">Trigger alert</div> <div onclick="timedChange()" id="change">Trigger change</div> </body> </html>
Version data entries
26 entries across 26 versions & 2 rubygems