|
Browser Info
This example shows how to access browser information using jQuery.
04 | p { color:green; font-weight:bolder; margin:3px 0 0 10px; } |
05 | div { color:blue; margin-left:20px; font-size:14px; } |
08 | < script type = "text/javascript" src = "js/jquery.js" ></ script > |
15 | jQuery.each(jQuery.browser, function(i, val) { |
16 | $("< div >" + i + " : < span >" + val + "</ span >") |
17 | .appendTo(document.body); |
|
|
|