After battling for hours and searching the depths of the web I still can't get my iframe to work with mCustom jQuery scrollbars. No scrollbars appear in the iframe. Note that my fiddle has a separate container lower down, simply to prove to you experts that the custom scrollbars do work in this fiddle - but only for an ordinary container of course. Fiddle http://jsfiddle.net/57ujsv0a/
Any help much appreciated.
https://cdnjs.cloudflare.com/ajax/libs/malihu-custom-scrollbar-plugin/3.1.1/jquery.mCustomScrollbar.concat.min.js
https://cdnjs.cloudflare.com/ajax/libs/malihu-custom-scrollbar-plugin/3.1.1/jquery.mCustomScrollbar.min.css
<div id="OuterContainer">
<div id="InnerContainer">
<iframe id="TabularFrame" scrolling="no" src="https://c2amf323.caspio.com/dp.asp?AppKey=3eb84000d74521dad93a427d8e36">
</iframe>
</div>
</div>
$('#InnerContainer').mCustomScrollbar({
theme: "dark-3",
axis: "yx",
scrollInertia: 500,
autoDraggerLength: false,
});
#OuterContainer{
height: 220px;
width: 550px;
padding:10px;
border:1px solid red;
}
#InnerContainer{
height: 170px;
width: 520px;
border:1px solid blue;
overflow-y: hidden;
overflow-x: hidden;
Padding: 30px 0px 0px 30px;
}
#TabularFrame{
height: 140px;
width: 460px;
overflow: hidden;
}