TOC PREV NEXT INDEX

domref



window.navigator.productSub


productSub returns the build number of the current browser.

Syntax

prodSub = window.navigator.productSub
 

Parameters

prodSub is a string.

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.
 


Netscape Communications
http://developer.netscape.com
TOC PREV NEXT INDEX