Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to have scrolls on an iframe without the scrollbars showing up. I've tried so many codes, I've tried this too, I don't know if I just mess up but my mind is really all over the place trying to figure this out. I've tried overflow:hidden but that just disables the scrolling of the page. I'd still want the texts to scroll without showing the scroll bars. I need help I've been trying to figure this out for days

share|improve this question
1  
Are iframes entirely necessary for your needs? They're not semantic and generally just bad practice. – Danny Cooper Oct 30 '12 at 4:40
It's actually what's being asked from me. I don't really get why he's giving me a hard time -_- If it's just me I'd just do it differently – Jams Medalla Oct 30 '12 at 4:42

closed as not a real question by Bill the Lizard Nov 1 '12 at 2:01

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

3 Answers

Give this a try: http://jsfiddle.net/m5Btd/3/

.classname{
    width:200px;
    height:200px;
    overflow-y: hidden;
    -ms-overflow-y: hidden;
}
share|improve this answer
Hi, thanks for helping me but the vertical sroll bars are still showing up. Is there any other way? – Jams Medalla Oct 30 '12 at 4:39

Possible solution is this:

  1. Make wrapper that is going to hold all content.
  2. Fix the wrapper's width and height about 10px less than width of iframe. (some browsers have it different)
  3. Inside of wrapper, put content div.
  4. By using this jquery plugin: https://github.com/wilkerlucio/jquery-autoscroll make content div scrollable and give some css to it, like this for ex: .content { overflow: hidden; position: relative; z-index: 1; }
  5. Call the page via iframe like this:

That should be it.

Also, you can make it dynamic and pass some width and height in URL...

share|improve this answer

You can use your iframe in a div, like this :

<div id="iframeINSIDE" style="width: 600px; height: 200px; overflow: hidden;">
    <iframe name="abc" style="width: 620px; height: 200px;" src="File.html"></iframe>
</div>

Irrespective of knowledge what browser you are using, I have checked it on Firefox and IE and works fine for both of them.You'll be able to scroll using your mousewheel and by dragging mouse pointer over the div as well.

Hope this is what you are looking for.

share|improve this answer
Thanks for trying to help. I actually got my answers here adomas.org/javascript-mouse-wheel but I really appreciate those who tried to help me thanks a lot! – Jams Medalla Oct 30 '12 at 7:10

Not the answer you're looking for? Browse other questions tagged or ask your own question.