JQUERY 1.4.4 script error - "Object required" - when executing a load in IE 8 but not others
I'm a newcomer in the field of JQUERY, but I quickly became addicted. I'm now playing around with the load function a lot, and maybe a bit too much. I'm currently developing a开发者_C百科 site, which works great in FF, Chrome and Safari, but as you can guess, I have issues with IE8 ( haven't tested it on other versions yet).
You can view it here: http://dev.denisduvauchelle.com/blp/b2b/index.php
It all works fine until I load a catalogue or collection page. At that point, nothing loads and IE8 informs me of this: Object required jquery144min.js -> line 108 -> Char: 464 -> Code 0 and nothing happens.
Any help would be greatly appreciated.
Try using the unminified jQuery 1.4.4. It's far easier to debug when the code isn't smooshed onto one line.
Update: You have some dirty HTML that may be mucking things up. Find all occurrences of < and > that aren't part of HTML tags (ie. "CATALOGUE > Cufflinks") and replace then with their HTML entity equivalents:
>
=>
<
=<
精彩评论