I have defined an event handler for some elements on the page.
var selector = "div, select, input, button";
$(selector).on('click', function (e) {
//deactivate function of the elements and prevent propagation
e.preventDefault();
e.stopPropagation();
//...
//dialog is loaded and created here
//e.g. $(body).append('<see-dialog-html-from-below>');
//...
alert('selector click');
}
I then add (and remove) a dialog to the DOM at runtime (one dialog at a time). A simplified dialog could look like this:
<div id="dialog" class="ui vertical menu">
<div class="item">
<label for="constraints">Constraints:</label>
<select id="constraints" name="constraints">
<option value="0">option 0</option>
<option value="1">option 1</option>
<option value="2">option 2</option>
<option value="3">option 3</option>
</select>
</div>
<div class="item clearfix">
<div class="ui buttons">
<div id="save_button" class="ui green button">Save</div>
<div class="or"></div>
<div id="cancel_button" class="closebutton ui button">Cancel</div>
</div>
</div>
</div>
I bind more click actions to the cancel and save buttons when I create the dialog.
The problem is the select box. It triggers the first click event that I defined above.
How can I exclude all elements in the dialog box from being included in the first event handler?
If clicking the
select
triggers the alert, in the first event handler, then the dialog already exists in the page by the time you execute$(selector).on('click', ...)
. In that case you can exclude some elements from the selector withnot
.This will bind a
click
handler to all elements matched by the selector but excluding elements matched in thenot
. If you have several dialogs consider using a CSS class likeui-dialog
and usingnot('.ui-dialog')
.EDIT: But note that if your dialog is placed inside a
div
and you do not stop the propagation of the custom events then any click in the popup will bubble up and also trigger the handler in the parentdiv
. Just ensure you usee.stopPropagation();
when adding handlers to the dialog actions.