I currently use jTemplates to create a rather large table on the client, each row has a button that will open a jQuery UI dialog. However, when I scroll down the page and cl
change your code like this
$('a.closeButton').click( function(e) { e.preventDefault(); $('#dialog').dialog('open'); });