hi....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 do the drag and drop.. with just doing the ('div#item').draggable();
thanks
hi....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 do 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>