I have a script running file while in chrome and safari, but when i try testing it on Internet explorer and Opera i get an undefined error when using '$'.
<head>
<title>test</title>
<script type="text/javascript" src="http:////ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<script language="JavaScript">
$(document).ready(function(){
});
</script>
</head>
Can someone figure out what's wrong with this? I guess it's something to do with the way IE and Opera do things in the background but i have no idea how to go about fixing this.
I've tried moving where i define jquery but nothing. Tried moving all the js to the bottom of the doc as well but nothing.
The script has a lot more code to it for button presses and blur methods but that would take up a lot of space and seeing as teh script falls over on the document ready method i thought it would be a waste but if you feel it should be there please let me know.