javascript - IE Display Bug, jQuery bug -
so built complex ajaxy jquery module on homepage, of "scrollable" flowplayer.org.
it works fine me on chrome, opera, firefox ... of course ie not playing friendly (regardless of version, testing).
objects not displaying should, overlaying each other, , when click button divs disappear.
however, if resize ie browser window , down, display fixes itself. if click on 1 of buttons made, messes again. until resize window again , looks fine.
to see problem:
- go makemeheal.com
- visit couple of product pages (you need product browsing history see module)
- go to: http://www.makemeheal.com/mmh/home.do?forceshowie=1
- look @ "your recent history" module.
(note forceshowie=1, because default hide ie people)
i thinking maybe there way force ie redraw entire module sometimes? or maybe has better idea on how fix underlying problem?
source code available here:
http://www.makemeheal.com/mmh/scripts/recenthistory.js
http://www.makemeheal.com/mmh/styles/recenthistory.css
thanks
you missing doctype declaration @ top of file, causing ie revert quirks mode. providing doctype cause ie render in standards mode. (cant ie6 still behave, ie7/ie8 should more consistent other browsers)
try putting @ top of main file:
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
hopefully fixes it.
Comments
Post a Comment