Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>getElementById Example</title> </head> <body> <div id="main-content">Default text</div> <script> const element = document.getElementById('main-content'); element.innerHTML = "Modified text!" </script> </body> </html>