TOC PREV NEXT INDEX

domref



metaKey


Returns a boolean indicating whether the <meta> key was pressed when the event was fired.

Syntax

returnType = event.property
 

Parameters

param is a something.

Example

function goInput(e) { // checks metaKey and
 
  if e.metaKey        // passes event along
 
    superSizeOutput(e);
 
  else
 
    doOutput(e)
 

 

Notes

None.

Specification

metaKey
 


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