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.



Follow us on Facebook and Twitter for latest update.