What steps will reproduce the problem?
1. i have the following code:
<script type="text/javascript"
src="/includes/nyroModal-1.6.2/js/jquery.nyroModal-1.6.2.pack.js"></script>
<script type="text/javascript">
$(function() {
$('a.nyroModalMovie').click(function(e) {
e.preventDefault();
$.nyroModalManual({
minWidth: 800, // Minimum width
minHeight: 800 // Minimum height
});
return false;
});
});
</script>
2. link code:
<P><a href="clip.asp?clip=3" class="nyroModalMovie" target="_blank">עצרת
לכבודה של ירושלים</a></P>
What is the expected output? What do you see instead?
the nyro box starts loading, but then the screen goes blank (white)
See URL: http://bit.ly/bgIdX7
What version of the product are you using? On what operating system?
Using Firefox 3.6.3
what haven't i done right?
PS: i tried using the Manual version, because when i tried the default, the
modal wasnt wide enough for some reason. so i needed to set it manually.
Thanks!
In your nyroModalManual call, you didn't set the url setting. Simply do like: $.nyroModalManual({ url: $(this).attr('href'), minWidth: 800, // Minimum width minHeight: 800 // Minimum height });