mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-24 23:39:51 +03:00
12 lines
215 B
HTML
12 lines
215 B
HTML
<html>
|
|
<head>
|
|
<title>alert based onload (from body) example</title>
|
|
|
|
</head>
|
|
|
|
<body onload="alert('Running onload')">
|
|
<h1>Just look at the log</h1>
|
|
<noscript><p>Javascript is disabled</p></noscript>
|
|
</body>
|
|
</html>
|