How to find the browser engine using javascript

Manideepgoud
Posted by Manideepgoud under JavaScript category on | Points: 40 | Views : 1459
We use navigator.product to find the browser engine.
<button onclick="myFunction()">Try it</button>
<p id="funo"></p>
<script>function myFunction() {
document.getElementById("fun").innerHTML =
"Browser engine is " + navigator.product;
}
</script>

Comments or Responses

Login to post response