I'm trying to display a html form (not inline) in a fancybox. However, clicking the link just re-directs to the actual page containing the form. I'm not sure why this is happening.
Below is an excerpt of my code:
Html:
<a href="http://localhost:8080/mysite/popups/registration_1.html" class="register">register</a>
Javascript:
$(document).ready(function() {
$("a.register").fancybox({
'type' : 'iframe'
});
});
I can't figure out for the life of me what I'm doing wrong. Looking at the fancybox documentation, the above appears to be correct syntactically.
I'm using the latest fancybox release (as of writing this), version: 1.3.4.
Any thoughts, or ideas would be much appreciated...
Thanks,
-Tom