Search code examples
jqueryhtmlcssiframecolorbox

Colorbox Lightbox - Remove Vertical Scrollbar of an IFrame


<!DOCTYPE html>
<html>
<head>
 <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
 <script src="http://www.jacklmoore.com/colorbox/jquery.colorbox.js" type="text/javascript" ></script>
        <link rel="stylesheet" href="http://www.jacklmoore.com/colorbox/example4/colorbox.css" type="text/css" media="screen"/>
<script type="text/javascript">
$(document).ready(function () {
    $("#test").click(function () { //on clicking the link above
        $(this).colorbox({iframe:true, width:"90%", height:"100%"});
    });
});
</script>
</head>
<body>
    <h3>External Form</h3>
<a href="https://dev88.wufoo.com/forms/ze7xusq0j2tum9/" id="test">Please fill out my form.</a>
</body>
</html>

It works fine now, but i need remove scrollbar in this code, how to remove vertical scrollbar of iframe?

Can anybody help me?


Solution

  • Try this.

    $(document).ready(function () {
        $("#test").click(function () { //on clicking the link above
            $(this).colorbox({iframe:true, width:"90%", height:"100%", scrolling: false});
        });
    });