iPad iFrame Scroll w/Bars
by Mabuti
HTML
<script src="https://rawgit.com/inuyaksa/jquery.nicescroll/master/jquery.nicescroll.min.js"></script>
<div class="scroll-wrapper" id="scroll-wrapper">
<iframe class="iframe-content" scrolling="yes" src="https://jsfiddle.net/Mabuti/4oek01fp/embedded/result/"></iframe>
</div>
CSS
.scroll-wrapper {
overflow-y: auto;
-webkit-overflow-scrolling:touch !important;
height: 300px;
}
.iframe-content {
height: 100%;
width: 100%;
}
JavaScript
$(document).ready(function() {
//$(".scroll-wrapper").niceScroll({cursorcolor:"#00F"});
//$(".scroll-wrapper iframe html").niceScroll({cursorcolor:"#00F"});
});