How do I get the BlackBerry OS version via javascript or jquery in a Webworks app?

I tried the following code from a thread "detect blackberry os version" but it isn't working for me:

var limit = '4.5.0.127';
var version = /BlackBerry\w+\/([\d\.]+)/i.exec(navigator.userAgent);
if (version[1] && version[1] < limit) {
    location.href='notcompatible.cfm';
}
link|improve this question
Since adopting feature/capability detection sometime early last decade I've forgotten all about userAgent strings. What are they used for again? – RobG Jun 7 '11 at 9:16
feedback

1 Answer

up vote 3 down vote accepted

based on this document...

http://supportforums.blackberry.com/t5/Web-and-WebWorks-Development/How-to-detect-the-BlackBerry-Browser/ta-p/559862

<script type="text/javascript">
    var ua = navigator.userAgent;
    if (ua.indexOf("BlackBerry") >= 0) {
        if (ua.indexOf("Version/") >= 0) { // ***User Agent in BlackBerry 6 and BlackBerry 7
            Verposition = ua.indexOf("Version/") + 8;
            TotLenght = ua.length;
            document.write("Jorgesys  BB OS Version :: " + ua.substring(Verposition, Verposition + 3));
        }
        else {// ***User Agent in BlackBerry Device Software 4.2 to 5.0
            var SplitUA = ua.split("/");
            document.write("Jorgesys BB OS Version :: " + SplitUA[1].substring(0, 3));
        }
    }
</script>
  • be sure to have Javascript Enabled! =)
link|improve this answer
:((, your code displays nothing on my simulator. any answers pls. – MarkJ Jun 9 '11 at 2:01
Hi MarkJ do you have Javascript enabled in your BB browser??? – Jorgesys Jun 9 '11 at 2:24
Yep by using this instructions: Go to Browser->Options->Browser Configuration->Scroll down->Enable "Support JavaScript"->Save Options; and it doesn't work, :(( mommyyy.. – MarkJ Jun 9 '11 at 2:31
i have tested this script in several devices, OS versions, mmm do you have the link of your .html page? – Jorgesys Jun 9 '11 at 2:46
1  
try with this page bit.ly/jZH0oD – Jorgesys Jun 9 '11 at 2:57
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

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