Source Code:
(back to article)
<!DOCTYPE html> <html> <head> <title>Title of the Document</title> </head> <body> <script> document.body.innerHTML = '<b>test'; // forgot to close the tag alert( document.body.innerHTML ); // <b>test</b> (fixed) </script> </body> </html>
Result:
Report an issue