Source Code:
(back to article)
<!DOCTYPE html> <html> <head> <title>Title of the Document</title> </head> <body> <div>W3Docs </div> <div hidden> First text "hidden"</div> <div id="elem">Second text "hidden"</div> <script> elem.hidden = true; </script> </body> </html>
Result:
Report an issue