jQuery event.namespace Property Last Updated : 11 Jul, 2025 Comments Improve Suggest changes Like Article Like Report The jQuery event.namespace property is used to return the custom namespace whenever the event is triggered. It is used to handle tasks differently depending on the namespace used. Syntax: event.namespace Parameters: This property contains single parameter event which is required. It returns the custom namespace and it comes from the event binding function. Example 1: This example uses event.namespace property to return and remove namespace. HTML <!DOCTYPE html> <html> <head> <title> jQuery event.namespace Property </title> <script src= "http://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> </script> <!-- Script to use event.namespace property --> <script> $(document).ready(function () { $("h3").on("custom.someNamespace", function (event) { alert(event.namespace); }); $("h3").click(function (event) { $(this).trigger("custom.someNamespace"); }); $("button").click(function () { $("h3").off("custom.someNamespace"); }); }); </script> </head> <body> <center> <h1>Welcome to GeeksforGeeks!.</h1> <div style="background-color:green"> <h3> Click here Geeks for Geeks.</h3> <button>Remove namespace</button> </div> </center> </body> </html> Output: Example 2: This example uses click.mySomething namespace to slideToggle the content. HTML <!DOCTYPE html> <html> <head> <title> jQuery event.namespace Property </title> <script src= "http://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> </script> <!-- Script to use event.namespace to slideToggle content --> <script> $(document).ready(function () { $("h3").on("click.mySomething", function () { $(this).slideToggle(); }); $("button").click(function () { $("h3").off("click.mySomething"); }); }); </script> </head> <body> <center> <h1>Welcome to GeeksforGeeks!.</h1> <div style="background-color:green"> <h3>1st statement : Geeks for Geeks.</h3> <h3>2nd statement : Mathematics</h3> <button>Click to remove namespace</button> </div> </center> </body> </html> Output: Comment A adeshsingh1 Follow 0 Improve A adeshsingh1 Follow 0 Improve Article Tags : Web Technologies JQuery jQuery-Events jQuery-Propertie Explore jQuery Tutorial 7 min read Getting Started with jQuery 4 min read jQuery Introduction 7 min read jQuery Syntax 2 min read jQuery CDN 4 min read jQuery SelectorsJQuery Selectors 5 min read jQuery * Selector 1 min read jQuery #id Selector 1 min read jQuery .class Selector 1 min read jQuery EventsjQuery Events 4 min read jQuery bind() Method 2 min read jQuery blur() Method 1 min read jQuery change() Method 2 min read jQuery EffectsjQuery animate() Method 2 min read jQuery clearQueue() Method 2 min read jQuery delay() Method 2 min read jQuery HTML/CSSjQuery addClass() Method 2 min read jQuery after() Method 1 min read jQuery append() Method 2 min read jQuery TraversingjQuery | Traversing 4 min read jQuery add() method 1 min read jQuery addBack() Method 2 min read Like