+ 9
How to return userAgent - with function
document.write (get('userAgent')); function get(it) { return navigator.it; }
1 Odpowiedź
+ 4
document.write (get('userAgent'));
function get(it)
{
return navigator[it];
}
document.write (get('userAgent')); function get(it) { return navigator.it; }