MouseEvent shiftKey Property

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP







<!--
main_leaderboard, all: [728,90][970,90][320,50][468,60]
-->




MouseEvent shiftKey Property



❮ DOM Events
❮ MouseEvent




Example


Find out whether or not the "SHIFT" key was pressed when a mouse button is
clicked:



if (event.shiftKey)
  alert("The SHIFT key was pressed!");

else
  alert("The SHIFT key was NOT pressed!");


Try it Yourself »


Definition and Usage


The shiftKey property returns a Boolean value that indicates whether or not the "SHIFT" key was pressed when a mouse event was triggered.


Note: This property is read-only.



Browser Support














Property
shiftKey Yes Yes Yes Yes Yes

Syntax



event.shiftKey

Technical Details






Return Value:
A Boolean, indicating whether the "SHIFT" key was pressed when the mouse event occured.

Possible values:


  • true - The shift key was pressed

  • false - The shift key was not pressed

DOM Version: DOM Level 2 Events

Related Pages


HTML DOM reference: MouseEvent altKey Property


HTML DOM reference: MouseEvent ctrlKey Property


HTML DOM reference: MouseEvent metaKey Property




❮ DOM Events
❮ MouseEvent