jquery ui dialog - live not working?
- by ile
I'm using this dialog: http://docs.jquery.com/UI/Dialog
To open dialog I do it this way:
$('a.openModal').live("click", function() {
var idArr = $(this).attr('id').split("OpenNote");
var id = idArr[1];
alert($(".modalNote#dialog-modal" + id).html());
$(".modalNote#dialog-modal" + id).dialog('open');
…