tags:

views:

310

answers:

2

Hi All,

Is there a way to make my jqModal scrollable? I'm loading the content via ajax if that helps any?

I tried adding the overflow: scroll and the scroll bars show up but it's disabled and shows the entire content.

Any ideas?

Thanks, rodchar

A: 

Check out jScrollPane. Looks pretty easy to use. You'd just call it after you've put the content into the div.

$('#selector').jScrollPane();
munch
thank you for the help.
rod
Tried this and got weird markup.
Mark Kadlec
+2  A: 

Or if you just want your jqModal panel to scroll when you use the page's scrollbar, you can change position:fixed to position:absolute in the jqModal CSS.

crickkills