jquery ajax call works in Firefox not in IE7

jquery ajax call works in Firefox not in IE7

I have the following function at the end of a (php) webpage:
function flagDocRead(currentdocid, currentuserid){     alert(currentdocid);     alert(currentuserid);     $.get("./blocks/rc_importantdocs/flagdocread.php",{ docid: currentdocid, userid:    currentuserid });    }  
currentdocid and currentuserid are both integers.

IE7 fails with "Object doesn't support this property or method".

Thanks in advance for any advice.