if ( !$.browser.msie && !$.browser.version <= 7 ) { $("div").corners("4px"); }
though the "$.browser.msie" will block any ie browser, so the bit making sure it is under version 7 is redundant. IschaGast wrote:
I am having rounded corners in a site but I don't want them in IE because it does strange things with the corners. Something like below isn't that possible? .corners("4px").not($.browser.msie && $.browser.version <= 7) What are the other solution to only target IE for not rounding that corners? Gr Ischa