Sha256: 50ff0deeae27afd12659080e5ea956b4200d50e89aa2a2159172129f00c7ad54
Contents?: true
Size: 472 Bytes
Versions: 64
Compression:
Stored size: 472 Bytes
Contents
<!DOCTYPE html> <html> <head> <title>Alerts</title> </head> <body> <input id=alert type=button onclick="alert('ok')" value=Alert> <input id=confirm type=button onclick="this.value = confirm('set the value')" value=Confirm> <input id=prompt type=button onclick='this.value = prompt("enter your name", "John Doe")' value=Prompt> <input id=timeout-alert type=button onclick="setTimeout('alert(\'ok\')', 3000)" value=Timeout-Alert> </body> </html>
Version data entries
64 entries across 64 versions & 2 rubygems