[jQuery] Re: .not($.browser.msie $.browser.version = 7)

2009-09-02 Thread MorningZ
I have zero idea if this actually works, but maybe conditional comments would work? !--[if lt IE 8] script type=text/javascript //stuff you would only do in IE8 and other browsers /script ![endif]-- On Sep 2, 7:20 am, IschaGast cont...@ischagast.nl wrote: I am having rounded corners in a

[jQuery] Re: .not($.browser.msie $.browser.version = 7)

2009-09-02 Thread Liam Potter
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

[jQuery] Re: .not($.browser.msie $.browser.version = 7)

2009-09-02 Thread MorningZ
Ah damn, i have that all wrong. it's backwards, sorry about that but maybe that would provide an alternative direction none the less http://msdn.microsoft.com/en-us/library/ms537512(VS.85).aspx On Sep 2, 7:57 am, MorningZ morni...@gmail.com wrote: I have zero idea if this actually works,

[jQuery] Re: .not($.browser.msie $.browser.version = 7)

2009-09-02 Thread Matt Kruse
On Sep 2, 6:20 am, IschaGast cont...@ischagast.nl 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. Many non-IE browsers already have native CSS support for rounded corners. If you want to exclude IE anyway, why not just