tags:

views:

74

answers:

2

I am trying to create an object where a user can click and drag to have the effect of a pull motion. Any idea how I would do that with jQuery? Pulling down a container that is hidden off the screen. Would I use drag?

Thanks,

Ryan

A: 

If sounds like you're trying to replicate something similar to this:

Otherwise, yeah, I would use a div that extended off the screen and use drag and drop to "pull" things in.

altCognito
A: 

In JQuery UI there is a Draggable library that you can use.
http://jqueryui.com/demos/draggable/

But the "off screen" part might be a hang-up. Not sure what you mean by "off screen".

Chris Brandsma
I would have some type of tab that would always be on the screen, but the panel it self will be off.
Coughlin
There is a JQuery UI Tab control. Does that do what you want?
Chris Brandsma