I had a similar question and was referred here. Following the popup api link above, I found a simple solution that doesn't involve a plug in.
$(document).on("pageinit", function () {
$('#del').click(function (e) { // e is the event
setTimeout(function () {
$("#popupDelete").popup("open")
}, 100);
});
});
I have a jsfiddle to demo this.