Sunday 10 June 2018

javascript - getElementById() returns null even though the element exists




I'm trying to get the element with getElementById(), but it returns null even though the element exists. What am I doing wrong?






blah











Answer



You have to put this in a document load event. The DOM hasn't gotten to abc by the time the script is executed.


No comments:

Post a Comment

php - file_get_contents shows unexpected output while reading a file

I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print &q...