Benjamin Sterling wrote:
> The click event is not will not bind, i've used .click and the does 
> not work either.  The hide() function is not working either and there 
> is not error being thrown.
>
> Any help would be great.
Well, I wouldn't want to interrupt your drinking ;) .. but, it does 
sound like IE is not entering the document ready function at all. 
Perhaps there's a script error before this declaration?

Often times a trailing comma in an object property bugs IE, while FF 
continues to run. E.g.
    var o = {a:false,b:true,}  // will kill IE.

Another thing you could try is to use the document ready shortcut; e.g.

  $().ready(function(){  ...});
  vs.
  $(document).ready(function(){ ... });

Hope this helps,

~ Brice


_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to