Sidebar didnt show in IE 7 and 8
Hi I have problem with "sidebar" ( green in left on page... with text "开发者_StackOverflow社区Novinky a nepřehlédněte")
My problem is: In Firefox, g. Chrome, etc... works good, but in IE 7 and 8 didn't show it.
Page: http://www.vivafitnes.cz/
Any help?
I can see it in IE8, but you have some script conflict that prevents IE7 to load. You have too many scripts and instances of the same script, so very hard to say which one is the culprit, but I'd bet it is
var obj = $("body");
which should be
var obj = $('body');
精彩评论