| Issue 51: | Request Iframe via target=_blank with Manual call | |
| 2 people starred this issue and may be notified of changes. | Back to list |
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
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
Thanks again william.caineiii for your help!
Status:
Fixed
Labels: -Type-Defect Type-Other |
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; }); });