I tried to find any good solution to detect firefox versions < 3.6 in order to deliver a notice to them that my website works much better in newer browsers (at least 3.6). I stubled across http://api.jquery.com/jQuery.browser/ - but found no example how to detect all Versions lower than 3.6. Any advice?

Thank you!

link|improve this question

1  
Which feature do you need to detect? Do that instead. – BalusC Feb 1 at 12:50
Maybe it's performance related. – James McLaughlin Feb 1 at 12:52
feedback

3 Answers

Try this

var itsOldFF = false;
var itsFF = false;
$.each($.browser, function (i, val) {
   if (i == "mozilla" && itsFF == false){
      itsFF = true;
      return;
   }
   if(itsFF && parseFloat(val) < 3.6) itsOldFF = true;
}); 
return itsOldFF;

EDIT

Demo on jsFiddle.net

link|improve this answer
@honestor did my solution work? – Amar Palsapure Feb 7 at 3:52
feedback

In general you are better off detecting features not versions. Detect whichever features you need and not the version number

link|improve this answer
problem is: I don't know which feature exactly makes the difference. I only see it works from 3.6 on.. – honestor Feb 2 at 14:15
Well which features are you using? Blobs got added about then – Zachary K Feb 2 at 16:34
it seems to depend on the CSS capabilities and parsing. Did FF 3.6 add some CSS3 features? – honestor Feb 3 at 10:45
it might have, I don't recall exactly what was added when. – Zachary K Feb 3 at 11:11
feedback
var ua = $.browser;
if (ua.mozilla && parseFloat(ua.version.slice(0,3)) < 3.6) {
    alert( "Do stuff for firefox 3.6 or less" );
}
link|improve this answer
tried this, didn't work: it sent alerts as well to 3.6 FF – honestor Feb 2 at 14:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.