What can cause a persistent “Reload the page to get source for” error in firebug?

前端 未结 10 2363
执笔经年
执笔经年 2020-12-16 11:23

I\'m trying to debug the javascript of a specific page, and I keep seeing

Reload the page to get source for page.htm in Firebug.

On Chrome, I\'m

10条回答
  •  攒了一身酷
    2020-12-16 11:49

    I have tried all the answers described here, but for me the issue was something else.

    I got the same message "Reload to see all sources" in firebug, and the Chrome debugger didn't display anything in the sources tab as well. I saw that the debugger was working on other pages for my website, so the problem was the page itself and after hours of sequentially deleting everything I had in the page, all that remained was an 'img' tag.

        
    

    It seems the src attribute should not contain "#", perhaps someone with a deeper understanding of HTML could explain this, but removing it has solved the problem for me.

    Hopefully this will be of use to someone else as well.

提交回复
热议问题