jquery - IE Conditionals for Javascript -
i running issues ie support dynamic opacity , scaling using jquery .animate(). change these specific lines ie has issues while still leaving them "original" way in chrome , firefox.
i have cam accross solution uses <!-- [if ie]> qrapped around <script> tag. problem want use line specific ie conditional in various places inside of .js file.
is there solution issue, or need create ie version of .js file?
you can use jquery make browser dependent check...
if ($.browser.msie) { //ie } else { //not ie }
Comments
Post a Comment