I've been using document.GetElementById() successfully but from some time on I can't make it work again. look at the following Code:
<html> <head> <title>no title</title> <script type="text/javascript"> document.getElementById("ThisWillBeNull").innerHTML = "Why is this null?"; </script> </head> <body> <div id="ThisWillBeNull"></div> </body> </html> I am getting document.getElementById("parsedOutput") is null all the time now. It doesn't matter if I use Firefox or Chrome, or which extensions I have enabled, or what headers I use for the HTML, it's always null and I can't find what could be wrong.
idevery time I restarted the web page.