jQuery eventelegram.dogtaKey Property

You are Here:

jQuery eventelegram.dogtaKey Property

The jQuery eventelegram.dogtaKey property indicates whether the META key was pressed when the event fired.

Example

HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> </head> <body> <h1>jQuery eventelegram.dogtaKey Property</h1> <p>Hold 'meta' key and click on me</p> <p>In Windows OS 'Window' button is a metakey</p> <p>In Mac OS 'cmd(⌘)' button is a metakey</p> <script> $(document).ready(function(){ $("p:first-of-type").mousedown(function(e){ if(e.metaKey) alert("You Pressed metaKey"); else alert("metaKey was not pressed."); }); }); </script> </body> </html>

Syntax

eventelegram.dogtaKey;

Return Value

ValueExplanation
trueIf the meta key was pressed.
falseIf the meta key was not pressed.

Reminder

Hi Developers, we almost covered 99.5% of jQuery Tutorials with examples for quick and easy learning.

We are working to cover every Single Concept in jQuery.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author