Updated with complete code
I have a jQuery dialog that I want to bind some click handler events to using jQuery delegate, but somehow it doesn't work.
This works:
$('table.standard tbody td .delete').live('click', function() {
alert('delete something');
});
This doesn't work, this calls the alert when I click ANYWHERE within the container, but I only wants it for the ".delete" selector.
$('div.container').delegate('table.standard tbody td .delete', 'click', function() {
alert('delete something');
});
div.container is the div inside the dialog. I've also tried to use body and document as the container, same affect.
Here's the complete code
This kinda work, but it doesn't get bind to the .delete class selector, instead, it binds to the entire row.
function ClientTierDialog_class() {
var self = this;
this.fDialogBehavior = function(dialog) {
$(dialog).find("a.button").unbind("click").bind("click", function(e) {
if ($(this).hasClass("cancelButton")) {
$(dialog).dialog("close");
}
else if ($(this).hasClass("okButton")) {
self.saveTier();
}
});
};
this.$dialog = null;
this.baseOptions = {
id: "TierDialog",
width: 585,
height: 600,
className: "tier-dialog",
header: "Create Tier",
body: "",
buttonText: {
cancel: "Close",
ok: "Save"
},
resizable: false,
modal: true,
fDialogBehavior: this.fDialogBehavior
};
}
/***************************************************************
* Events
***************************************************************/
ClientTierDialog_class.prototype.openDialog = function(options) {
var self = this;
var tierName = options.tierName;
var url = "Administration/GetClientTierDialog";
this.$dialog = null;
$.ajax({
url: url,
data: options,
success: function(response) {
var $content = $(response.html);
var options = self.baseOptions;
if (tierName !== undefined && tierName.length > 0) {
options.header = "Edit Tier";
}
options.body = $content;
WSOD.dialog(options);
this.$dialog = $("div.tier-dialog");
self.initEvents();
},
error: function() {
// Handle errors
}
});
};
ClientTierDialog_class.prototype.delete = function() {
$('table#addedFirms tbody tr').delegate('.delete', 'click', function() {
alert('delete something');
});
};
ClientTierDialog_class.prototype.initEvents = function() {
var self = this;
self.delete();
};
$(document).ready(function() {
ClientTierDialog = new ClientTierDialog_class();
});
Thanks.
div.containerexist at the time thedelegateis executed? (Is it within a DOM ready event handler?) – James Allardice Mar 7 '12 at 23:40div.containerexists when the dialog is opened. Thanks. – Saxman Mar 7 '12 at 23:48deletemethod is kinda work but not really working... This method get executed not on the.deleteclass but the entire row click. Thanks. – Saxman Mar 8 '12 at 18:03