Tagged Questions

5
votes
2answers
4k views

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 ...
1
vote
10answers
616 views

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?
0
votes
2answers
107 views

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 ...