I'm experiencing a really odd error in Pagedown (AKA WMD Editor, the open-source version of the markdown editor used here on StackOverflow), but I think someone with the proper JS experience could help me without actual knowledge of Pagedown.
The "insert link" and "insert image" buttons put a shaded background over the page when they are clicked. This is then removed by code background.parentNode.removeChild(background); where background is a variable that was set earlier, and references the div that holds the background.
At times, when the background is obviously visible in the page, the code above fails, and the browser console says Uncaught TypeError: Cannot read property 'parentNode' of null except that I have verified that background at that exact time is NOT null.
Note that when I say "at times", it is actually always the second time clicking the button. (i.e. click insert button, cancel, click insert button again, try canceling again........instant failure.)
Can anyone take a guess as to how/why this is happening? I don't have any "hacks" in place that could be causing this, but I am using the "hooks" feature which I'd guess is not often used.
backgroundisnull, it has nothing to do with whether or not it's in the DOM (unless this comes right after an appropriate DOM selection). It means that some code somewhere is assigning thenullvalue to that variable. Can't tell more without your code. – squint Jul 26 '12 at 0:34console.log(background)right before the line that causes the error, and it appears in my console properly. – John Jul 26 '12 at 0:53