Does anyone know a detailed and effective jQuery UI 1.7 tutorial out there? I just can't do it with the demo page alone.
I can't figure out the drag and drop..
With just doing the ('div#item').draggable();
Thanks
Does anyone know a detailed and effective jQuery UI 1.7 tutorial out there? I just can't do it with the demo page alone.
I can't figure out the drag and drop..
With just doing the ('div#item').draggable();
Thanks
i like this one:
http://www.learningjquery.com/2008/07/introduction-to-jquery-ui
also, try
$('div#item').draggable():
To use jQuery draggable, you need to :
<div id="item">Some content</div>
#item { width: 100px; height: 100px; }
$('div#item').draggable();
Of course, 2 and 3 can be done together:
<div id="item" style="width: 100px; height: 100px;">Some content</div>