techatspree / jquery-toastmessage-plugin

A JQuery plugin to 'toast' messages
Apache License 2.0
373 stars 127 forks source link

Css top on Internet Explorer #5

Open davideianne82 opened 13 years ago

davideianne82 commented 13 years ago

The top of the css property is interpreted differently in Internet Explorer and Firefox.

I used this workaround:

if(navigator.userAgent.match(/MSIE/i)) { toastWrapAll.css({top: $(window).scrollTop()+'px'}); //toastWrapAll.css({top: document.documentElement.scrollTop}); }

Bye