As you might already know, the latest versions of jQuery remove $.browser
support. I need to know if a user is using Firefox 3.6 or less. Is there any way to detect that using available features rather than looking at the user agent?
The reason we need this detection is that we style our upload buttons using another element, which then triggers a click on the invisible upload element. This does not work on FF <= 3.6.
Clarification
- Triggering an event on the upload like
$('#uploader').trigger('click')
is what does not work - I do NOT want to look at the user agent to know this is the case, although saying that's the only way may be an acceptable answer
- I have no idea what this "feature" would be to detect it