|
|
|
|
|
window.navigator.productSub
productSub returns the build number of the current browser.
Syntax
prodSub = window.navigator.productSubParameters
Example
<script> function prodsub() { dt = document.getElementById("d").childNodes[0]; dt.data = window.navigator.productSub; } </script> <button onclick="prodsub();">productSub</button> // returns: 20010725
Notes
On IE, this property returns undefined.
Specification
DOM Level 0. Not part of specification.
| mozilla.org | mailto:oeschger | bug 93108 |
|
|
|
|
|