Issue 51: Request Iframe via target=_blank with Manual call
Status:  Fixed
Owner: ----
Closed:  Aug 2008
Reported by Epo...@gmail.com, Jul 21, 2008
i currently have this

<script type="text/javascript">
$(function() {
	$('#email').click(function(e) {
	e.preventDefault();
		$.nyroModalManual({
		debug: true,
		url: 'http://<?php echo $host ; ?>/forms/email_page.php',
		type: 'iframe',
		content: null
		});
	return false;
	});
});
</script>

I've tried bunch of stuff but none is working for me.....
lack of much documentation makes it hard to use this lightbox.

Can someone help me with the right code to  achieve this.

 
Jul 23, 2008
Project Member #1 william....@gmail.com
try this

$(function() {
	$('#email').click(function(e) {
	e.preventDefault();
		$.nyroModalManual({
		debug: true,
		//url: 'reciever.html',
		type: 'iframe',
		content: '<iframe src="[URL HERE]" frameborder="0" hspace="0" 
style="height:100%;width:100%"></iframe>',
		width: 100,
		height: 100
		});
	return false;
	});
});
Jul 23, 2008
#2 Epo...@gmail.com
thanks for the prompt reply. 
it works for me now, i'll go ahead and some more testing.

Thanks alot  william.caineiii.
Aug 27, 2008
Project Member #3 nyro...@gmail.com
Thanks again william.caineiii for your help!
Status: Fixed
Labels: -Type-Defect Type-Other