TOC PREV NEXT INDEX

Put your logo here!


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 


mozilla DOM project | mailto:oeschger | bug 93108
TOC PREV NEXT INDEX