Edit This Code:
See Result »
<
!DOCTYPE
html
>
<
html
>
<
body
>
<
p
id
="p1"
>
Hello World!
<
/p
>
<
script
>
document.getElementById(
"p1"
).innerHTML =
"New text!"
;
<
/script
>
<
p
>
The paragraph above was changed by a script.
<
/p
>
<
/body
>
<
/html
>
<!DOCTYPE html> <html> <body> <p id="p1">Hello World!</p> <script> document.getElementById("p1").innerHTML = "New text!"; </script> <p>The paragraph above was changed by a script.</p> </body> </html>
Result:
Privacy Policy