Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8574949
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T19:35:22+00:00 2026-06-11T19:35:22+00:00

I tried to find any good solution to detect firefox versions < 3.6 in

  • 0

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!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T19:35:23+00:00Added an answer on June 11, 2026 at 7:35 pm
    /* ===== Firefox ===== */
    
    // Select Firefox
    if (jQuery.browser.mozilla) {
        // do sth.
    }
    
    // Select Firefox 1.5.x to 2.x
    if (jQuery.browser.mozilla && jQuery.browser.version.substr(0, 3) == '1.8') {
        // do sth.
    }
    
    // Select Firefox under 3.x
    if (jQuery.browser.mozilla && jQuery.browser.version < '1.9') {
        // do sth.
    }
    
    // Select Firefox 3.0.x and above
    if (jQuery.browser.mozilla && jQuery.browser.version.substr(0, 3) == '1.9') {
        // do sth.
    }
    
    // Select just Firefox 2.0.x
    if (jQuery.browser.mozilla && jQuery.browser.version == '1.8.1') {
        // do sth.
    }
    
    // Select just Firefox 3.0.x
    if (jQuery.browser.mozilla && jQuery.browser.version == '1.9') {
        // do sth.
    }
    
    // Select just Firefox 3.5.x
    if (jQuery.browser.mozilla && jQuery.browser.version == '1.9.1') {
        // do sth.
    }
    
    // Select just Firefox 3.6.x
    if (jQuery.browser.mozilla && jQuery.browser.version == '1.9.2') {
        // do sth.
    }
    
    /* ===== Internet Explorer ===== */
    
    // Select Internet Explorer
    if (jQuery.browser.msie) {
        // do sth.
    }
    
    // Select Internet Explorer above 6
    if (jQuery.browser.msie && jQuery.browser.version > 6) {
        // do sth.
    }
    
    // Select Internet Explorer 7 and below
    if (jQuery.browser.msie && jQuery.browser.version <= 7) {
        // do sth.
    }
    
    // Select just Internet Explorer 6
    if (jQuery.browser.msie && jQuery.browser.version == '6.0') {
        // do sth.
    }
    
    // Select just Internet Explorer 7
    if (jQuery.browser.msie && jQuery.browser.version == '7.0') {
        // do sth.
    }
    
    // Select just Internet Explorer 8
    if (jQuery.browser.msie && jQuery.browser.version == '8.0') {
        // do sth.
    }
    
    // Select just Internet Explorer 9
    if (jQuery.browser.msie && jQuery.browser.version == '9.0') {
        // do sth.
    }
    
    /* ===== Safari / Chrome ===== */
    
    // Select Safari / Chrome
    if (jQuery.browser.safari) {
        // do sth.
    }
    
    // Select Safari 3
    if (jQuery.browser.safari && (navigator.appVersion.indexOf('3.') != -1)) {
        // do sth.
    }
    
    // Select Safari 4
    if (jQuery.browser.safari && (navigator.appVersion.indexOf('4.') != -1)) {
        // do sth.
    }
    
    // Select Chrome 1
    if (jQuery.browser.safari && (navigator.appVersion.indexOf('1.') != -1)) {
        // do sth.
    }
    
    // Select Chrome 3
    if (jQuery.browser.safari && (navigator.appVersion.indexOf('3.') != -1)) {
        // do sth.
    }
    
    /* ===== Opera ===== */
    
    // Select Opera
    if (jQuery.browser.opera) {
        // do sth.
    }
    
    // Select Opera 9.5 and above
    if (jQuery.browser.opera && jQuery.browser.version >= '9.5') {
        // do sth.
    }
    
    // Select just Opera 9.5
    if (jQuery.browser.opera && jQuery.browser.version == '9.5') {
        // do sth.
    }
    
    // Select just Opera 10
    // Note: Opera 10's user agent looks like Opera/9.80 [...] Version/10.00
    if (jQuery.browser.opera && jQuery.browser.version == '9.8') {
        // do sth.
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I tried searching in google but could not find any useful answer, if(verifier.length() >
I tried to find an easy solution for the following. I have a main
I tried to find a solution but I didn't found what I was searching
I tried to find a solution to my problem already in google and here
i tried to find how i could load kml file and I found that
Has anyone tried to store Lucene index in JBoss Cache? Are there any good
I've tried to find solution but with no results. My task is to write
I'm on Mac OSX, and I'm unable to find a good solution to parse
I've been google'ing for some time but I can't find a good solution for
Good day, can't seem to find a solution for this. i have 2 buttons

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.