I've been having problems getting jqmodal modal dialogs to display on links added dynamically by client side code. I've demonstrated the problem at the following URL: http://www.neil-burton.co.uk/jqmodaltest/index.htm
Any help would be appreciated
I've been having problems getting jqmodal modal dialogs to display on links added dynamically by client side code. I've demonstrated the problem at the following URL: http://www.neil-burton.co.uk/jqmodaltest/index.htm
Any help would be appreciated
You can use .live for the anchor click events
UPDATED AGAIN
$('#dialog').jqm({ajax:'@rel'});
// open the modal whenever anchor links on the page are clicked
$('a.someClass').live('click',function(){
$('#dialog').jqmShow(this);
});