Skip to content Skip to sidebar Skip to footer

Script File Not Loading

I am beating my head against the wall on this. I know Javascript/jQuery well and I can not see the reason why this is not working. I've tried both 2.0.3 and 1.10.2 with the same re

Solution 1:

Change this (You missed 'a' char in 'javascript')

<scripttype="text/javscript"src="http://localhost/kdev/views/dashboard/js/default.js"></script>

to this:

<scripttype="text/javascript"src="http://localhost/kdev/views/dashboard/js/default.js"></script>

Solution 2:

My lightbox script file wasn't loeading properly:

<scripttype="text/javascript"src="js/lightbox-plus-jquery.min.js"></script>

I then removed type="text/javascript" and it loaded perfectly.

Post a Comment for "Script File Not Loading"