programming help purposes and for gathering browser
datails.with the help of javascript we can easily
get those data from client side codes.
the following javascript navigator variables are used
for getting details of browsers -
navigator.appName - used to return the browser name
navigator.appVersion - used to get version details
navigator.appCodeName - returns browser code
navigator.platform - give platform details
navigator.cookieEnabled - gives the cookies are
on of off in the browser
as a example we can embed these codes in html as
follows -
<html><body>
<script type="text/javascript">
document.write("Name of Browser: ")
document.write(navigator.appName)
</script></body></html>
If you have questions about this post or any topics, post your questions in
discussions/forum in this website, you will get your answer