TOC PREV NEXT INDEX

domref



window.controllers


Returns the XUL controllers of the chrome window.

Syntax

controllers = window.controllers
 

Parameters

controllers is an array of objects of the type XUL Controllers.

Example

<script>
 
  function con() {
 
    alert(window.controllers);
 
  }
 
</script>
 
// displays: [object XULControllers]
 

Notes

None.

Specification

DOM Level 0. Not part of specification.
 


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