When I add jquery to sharepoint 2007 (MOSS) and try and use it on a page no matter what I write on the client i get an "object expected" at the line/column where the "$" appears.
I have used fiddler to check that the client is downloading the query JS (which it is)
But its like its being ignore and therefor eth "$" is not understood. Searching google everybody is saying its the selector not finding the elements but see code below I do not see how it can not find my very simple example.
In master page in header
<script type="text/javascript" src="jquery.min.js"></script>
version 1.4.2
On a page
<a href="javascript:abc();">Testing</a>
<script>
function abc(){
$("#simon").css("border","3px solid red");
}
</script>
<div id="simon">