If I open a Fancybox on a click:
<a class="iconlink2" id="variouscontact" href="#inlineterms">TEXT</a>
<script type="text/javascript">
$(document).ready(function() {
$("#variouscontact").fancybox({
'titlePosition' : 'inside',
'transitionIn' : 'none',
'transitionOut' : 'none'
});
});
</script>
But now if I want to open another Fancybox from the Fancybox (link) in the second Fancybox the background is scrollable. How can I prevent this?