mirror of
https://github.com/faisalman/ua-parser-js.git
synced 2025-09-27 16:08:47 +03:00
10 lines
277 B
HTML
10 lines
277 B
HTML
<script src="../js/ua-parser.js"></script>
|
|
<script>
|
|
try {
|
|
var result = JSON.stringify(UAParser(), null, "\t");
|
|
document.write("<pre>" + result + "</pre>");
|
|
console.log(result);
|
|
} catch (e) {
|
|
document.write("Error: " + e);
|
|
}
|
|
</script> |