I have an interesting question: Can I insert this <h1><a href=â€blablablaâ€> blablabla </a></h1> directly on the begging/top/first line of the <body>, Is that possible via JS? Thanks.
Not sure why you'd want to use javascript for this, but <html> <body> text that's here already. <script type="text/javascript"> var body = document.getElementsByTagName("body")[0]; body.innerHTML = "<h1><a href=â€blablablaâ€> blablabla </a></h1>" + body.innerHTML; </script> </body> </html> Code (markup):