W3.JS detect browser w3.js - Net-Raft.com

Welcome aboard! We are happy you are here and wish you good net-raft!




Just a Web Code Solution
join us

detect browser w3.js


 406

Show ResultW3.JS


3

<!DOCTYPE html>
<html>
<script src="https://www.w3schools.com/lib/w3.js "></script>
<body>

<div id="mydiv">
{{browser}}
</div>

<script>
if((navigator.userAgent.indexOf("MSIE") != -1 ) || (!!document.documentMode == true ))
{
var myObject= {"browser" : "IE"};
}
else if(navigator.appVersion.indexOf('Edge') > -1)
{
var myObject= {"browser" : "Edge"};
}
else if(navigator.userAgent.toLowerCase().indexOf("op") > -1)
{
var myObject= {"browser" : "Opera"};
}
else if(navigator.userAgent.indexOf("Chrome") != -1)
{
var myObject= {"browser" : "Chrome"};
}
else if(navigator.userAgent.indexOf("Firefox") != -1 )
{
var myObject= {"browser" : "FireFox"};
}
else if(navigator.userAgent.indexOf("Safari") != -1)
{
var myObject= {"browser" : "Safari"};
}
else
{
var myObject= {"browser" : "unknown"};
}
w3.displayObject("mydiv", myObject);
</script>

</body>
</html>


By        
The power of the user (%)
3%



The most helpful W3.JS solutions

How to fill a dropdown using w3.js ?How to fill a dropdown using w3.js ?W3.JS

Click to see more ...

  1.2K     147

how to fill a dropdown from another file using w3.js ?how to fill a dropdown from another file using w3.js ?W3.JS

Click to see more ...

  980     144

how to fill a table from another file using w3.js ?how to fill a table from another file using w3.js ?W3.JS

Click to see more ...

  690     71

How to change background color using w3.js ?How to change background color using w3.js ?W3.JS

Click to see more ...

  554     57

get latitude and longitude w3.jsget latitude and longitude w3.jsW3.JS

Click to see more ...

  546     56

how to fill a list from another file using w3.js ?how to fill a list from another file using w3.js ?W3.JS

Click to see more ...

  494     53

how to set background color using w3js ?how to set background color using w3js ?W3.JS

Click to see more ...

  400     49

How to make a slide show using w3.js ?How to make a slide show using w3.js ?W3.JS

Click to see more ...

  391     46

How to display text  in html element using w3.js ?How to display text in html element using w3.js ?W3.JS

Click to see more ...

  341     42

how to round numbers to decimals from another file and display it using w3.js ?how to round numbers to decimals from another file and display it using w3.js ?W3.JS

Click to see more ...

  402     28

Welcome aboard!
We are happy you are here and
wish you good net-raft!