Communities for your favorite technologies. Explore all Collectives
Ask questions, find answers and collaborate at work with Stack Overflow for Teams.
Ask questions, find answers and collaborate at work with Stack Overflow for Teams. Explore Teams
Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
A sillyIn my case it was a typo caused, I forgot a backslash and was referencing the bug for mesource incorrectly. I referenced jquery as
Before src="/scripts/jquery.js" instead of
src="/scripts/jquery.js"
After src="scripts/jquery.js".
src="scripts/jquery.js"
A silly typo caused the bug for me. I referenced jquery as src="/scripts/jquery.js" instead of src="scripts/jquery.js".
In my case it was a typo, I forgot a backslash and was referencing the source incorrectly.
Before src="/scripts/jquery.js"
After src="scripts/jquery.js"