Issue 195: nyroModel-functions don't work after loading new content
Status:  Fixed
Owner: ----
Closed:  Mar 2009
Reported by ro...@nullneunelf.de, Mar 13, 2009
Hi,

everything works fine so far with the nyroModal-functions.

If i load new content into the page with some nyroModal-links they don't
work (all links open in the browser window and not in the nyro-modal-window).

$(document).ready(function(){$("a#operator").click(function(){$("div#mailbox").load("mailbox.php");});});

this loads the mailbox into the div "mailbox"... if there are any links in
the new loaded content, they aren't working :(

Thanks for any help!
Damien
Mar 14, 2009
Project Member #1 nyro...@gmail.com
this code :
$(document).ready(function(){
	$("a#operator").click(function(e){
		e.preventDefault();
		$("div#mailbox").load("mailbox.php", null, function() {
			$('.nyroModal', this).nyroModal();
		});
	});
});

Shoudl work for you
Status: Fixed