On Sat, Aug 22, 2009 at 12:12 PM, ak732 <ask...@gmail.com> wrote:

>
> Draggable has an option called 'handle' with which you can specify the
> element that use used as the drag handle for the draggable.
>
> So, something like this...
>
>   $("#wdw").draggable({handle:$(".title", this)})


That's right. But a simple selector will do:
$("#wdw").draggable({ handle: ".title" })

It already takes care of searching within the element.

- Richard

Reply via email to