vote up 0 vote down star

i have a draggable div that has the overflow position to auto, so when the content is too big and i get a scroll bar,

since i haven't added a handle (i want the hole content of the div to drag it) when you use de scroll bar the div moves/draggs....

is there a way of excluding an element from the handle of a draggable div in jquery?

i need something like handle: not(#thisTable)

is there a way of doing this with selectors or something like that?

tnx in advanced

Fortes

flag

3 Answers

vote up 0 vote down

Add a div inside your div, width & height 100%, no margin, no padding, and put your content there. Set its overflow to default and set it as the handle. That way, the scrollbar of the parent div will no longer be in the handle, thus not initiating the drag.

link|flag
vote up 0 vote down check

tnx for your answer, but i found what i think is a better solution....

there is another option for draggable called 'cancel' and it excludes the selected element from the handle of the draggable element...

$('#container').draggable('option', 'cancel', '#excludedElement');

hope this helps someone else...

link|flag
vote up 0 vote down

How did you specify the scrollbar as excludedElement?

link|flag

Your Answer

Get an OpenID
or

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