- Posted by
Daniel on
8/28/2011 9:15:39 PM
This past weekend I was coding something in JavaScript and I kept getting the following error on the FireBug console:
I couldn't figure out how to solve the issue. Until I came accros an article that mention that it was that one of the attributes of a tag might not be being set properly. Well I looked at all of my script and link tags and they were all fine. I finally noticed that in the clobal I was rewriting the path when I shouldn't have been to a different URL which lead to script file that didn't exist.
Moral of the story check that all of your script tags and link tags do not get overwritten and that the tags have an src attribute that leads to a valid file. Also, it is possible that JavaScript can cause the above error too.