Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

jQuery: Check whether the event namespace is used

jQuery Fundamental - II : Exercise-90

Check whether the event namespace is used.

Sample solution :

HTML Code :

<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-git.js"></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Check whether the event namespace is used.</title>
</head>
<body>
<button>Display event.namespace</button>
<p></p>
</body>
</html>

JavaScript Code :

$( "p" ).on( "test.myNamespace", function( event ) {
console.log(event.namespace );
});
$( "button" ).click(function( event ) {
$( "p" ).trigger( "test.myNamespace" );
});

See the Pen jquery-fundamental-exercise-90 by w3resource (@w3resource) on CodePen.


Contribute your code and comments through Disqus.

Previous: Check whether the META key was pressed when the event fired.
Next: Display the mouse position relative to the left and top edges of the document (within this iframe).

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.