tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 jQuery > Basic > Browser Info

Browser Info 

This example shows how to access browser information using jQuery.

File Name  :  
source/JQUERY/basic/browser.html 
Author  :  Sudhakar KV
Email  :  kvenkatasudhakar@gmail.com
01<html>
02<head>
03  <style>
04  p { color:green; font-weight:bolder; margin:3px 0 0 10px; }
05  div { color:blue; margin-left:20px; font-size:14px; }
06  span { color:red; }
07  </style>
08  <script type="text/javascript" src="js/jquery.js"></script>
09</head>
10<body>
11    <p>Browser info:</p>
12 
13<script>
14    
15    jQuery.each(jQuery.browser, function(i, val) {
16      $("<div>" + i + " : <span>" + val + "</span>")
17                .appendTo(document.body);
18    });
19 
20</script>
21</body>
22</html>




 
  


  
bl  br