I need to use browser event with namespace in the code. Is it necessary that the actual event name (for eg click) comes in the beginning of the event(click.mynamespace) or it can be anywhere in the event name with namespace.
In other words, will the event name "mynamespace.click" cause the event handler to trigger(on click of div) when used with on() method like :
$("div").on("mynamespace.click",...,...)