You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
424 B
17 lines
424 B
<html>
|
|
<head>
|
|
<title>Inline Script innerHTML Test</title>
|
|
<link rel="stylesheet" type="text/css" href="tst.css">
|
|
</head>
|
|
<body>
|
|
<h1>Inline Script innerHTML Test</h1>
|
|
<p>Before</p>
|
|
<p id="demo">some text you should never see</p>
|
|
<noscript><p>Javascript is disabled</p></noscript>
|
|
<script type="text/javascript">
|
|
document.getElementById("demo").innerHTML="text inserted by script";
|
|
</script>
|
|
<p>Afterwards</p>
|
|
</body>
|
|
</html>
|