scrollbar to iframe through javascript.

A

Archana

hi all,

can any one tell me how will i set scrollbar to iframe throguh
javascript.


please help me asap.


thanks in advance
 
T

tomtom.wozniak

hi all,

can any one tell me how will i set scrollbar to iframe throguh
javascript.

please help me asap.

thanks in advance

1) Goto: google.com

2) Search: iframe scrollbars

3) Press Button: I'm feeling lucky

4) Profit!

-Tom Woz :)
 
A

Archana

1) Goto: google.com

2) Search: iframe scrollbars

3) Press Button: I'm feeling lucky

4) Profit!

-Tom Woz :)

hi,
thanks for reply
i think you are not getting what i want.

I want to enable/disbale scrollbar through javascript and not through
its style at runtime.

if you have any idea abt it then please help me asap

thanks in advance
 
B

Bart Van der Donck

Archana said:
can any one tell me how will i set scrollbar to iframe throguh
javascript.
[...]

I want to enable/disbale scrollbar through javascript and not through
its style at runtime.

Only Firefox knows the dynamic 'scrolling'-property for (i-)frames:

<iframe id="ifr"></iframe>
<input type="button" value="Enable scrollbars"
onClick="document.getElementById('ifr').scrolling = 'yes';">
<input type="button" value="Disable scrollbars"
onClick="document.getElementById('ifr').scrolling = 'no'; ">

But with a bit of creativity (requires a reload of the iframe):

<div id="ifrdiv">
<iframe></iframe>
</div>
<input type="button" value="Enable scrollbars"
onClick="document.getElementById('ifrdiv').innerHTML =
'<iframe scrolling=yes></iframe>';">
<input type="button" value="Disable scrollbars"
onClick="document.getElementById('ifrdiv').innerHTML =
'<iframe scrolling=no></iframe>';">

Hope this helps,
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,142
Messages
2,570,819
Members
47,367
Latest member
mahdiharooniir

Latest Threads

Top