vote up 0 vote down star

Does anyone know if there is a way to disable scroll bars in the jquery dialog box? The content that I have in the div is 300 px but the dialog is set to 200px. It automatically puts the scrollbars but I do not want them. I will add it myself to the second div that makes it bigger than the window. Any help is appreciated.

flag

36% accept rate

1 Answer

vote up 0 vote down

I don't know exactly what you mean by a 'jquery dialog box', but the standard way to disable the scroll bars would be to set the div's overflow property to 'hidden'

put this in your css file:

div.class_name {
  overflow: hidden;
}
link|flag
jquery(a javascript wrapper of sorts) has there own dialog boxes. there are options in jquery to do similar things but did not find one for this particular plugin. i cannot just set that property for jquery – ngreenwood6 Oct 25 at 2:26
jquery is not a javascript wrapper, it's a framework that abstracts out cross-browser issues and simplifies DOM traversal...if you can specify what jquery function you are using to generate the 'dialog box' then i might be able to help... – Paul Oct 26 at 0:42

Your Answer

Get an OpenID
or

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