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>
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>
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();
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>