detection browsers and version in jquery asp.net

Hi All, 

I'm going to share the code sample for find to or detect to browsers and browsers version using jquery asp.net.

The code sample for find browsers using jquery


<script type="text/javascript">

 function getCurrentBrowsers_Name() {
    var Names = navigator.appName;
    var users = navigator.userAgent;
    var temp;
    var Matchs = users.match(/(opera|chrome|safari|firefox|ie)\/?\s*(\.?\d+(\.\d+)*)/i);
    if (Matchs && (temp = users.match(/version\/([\.\d]+)/i)) != null) Matchs[2] = temp[1];
    Matchs = Matchs ? [Matchs[1], Matchs[2]] : [Names, navigator.appVersion, '-?'];
    return Matchs[0];
}

var  getCurrentBrowser = getCurrentBrowsers_Name();

</script>


The code sample for find browsers version on using jquery

<script type="text/javascript">

 function getCurrentBrowsers_Version() {
    var Names = navigator.appName;
    var users = navigator.userAgent;
    var temp;
    var Matchs = users.match(/(opera|chrome|safari|firefox|ie)\/?\s*(\.?\d+(\.\d+)*)/i);
    if (Matchs && (temp = users.match(/version\/([\.\d]+)/i)) != null) Matchs[2] = temp[1];
    Matchs = Matchs ? [Matchs[1], Matchs[2]] : [Names, navigator.appVersion, '-?'];
    return Matchs[1];

}

var  getCurrentBrowserVersion = getCurrentBrowsers_Version();

</script>

ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

www.code-sample.com/. Powered by Blogger.
^