jquery.support

using $.support or $.browser to test for multiple browsers

What's the best way to find out if a user is not using IE 7 or 8, Firefox, Safari, Chrome or Opera? I want to show a message if they are not using one those browsers. In this case is it just easier to use browser sniffing? ...

Tips for writing a jQuery selector

Seems to me the most important yet tricky thing to get right when writing jQuery is the selector. What tips do you have for writing an accurate selector? ...

Detecting support for specific HTML 5 features via jQuery

I'm working on some HTML5 demo code, including stuff like <input type="date" /> This currently works correctly in Opera 10 as-is, but every other browser just displays a normal text input. I'm then using a jQuery.date-input plugin to override this behaviour on browsers that don't support it. Problem is - the jQuery's running on Opera a...

using jQuery.support to detect IE6

I've got the following code which is causing issues in IE6: $("#social-selector").hover( function () { $('.selector-list').show(); $('.selector-button').addClass('on'); }, function () { $('.selector-button').removeClass('on'); $('.selector-list').hide(); } ); I'd prefer to use jQuery.su...