tags:

views:

47

answers:

1

Hello

I want to rearrange the elements in a page as i wish; for example visit http://www.pageflakes.com/.

How can i achieve that using JQuery? Is there any plugin? If not, how to start creating this? Any insights?

+1  A: 

jQuery UI http://jqueryui.com/

Thomas Clayson
Is there a dock control available in JQuery UI? Or you mean to make use of drag and drop to achieve this?
NLV
Using the JQuery UI [Sortable](http://docs.jquery.com/UI/API/1.8/Sortable), you can do this by 'connecting' multiple 'columns'.
sje397
@NLV I mean "Here is your starting point, please go research yourself and come back to us if you have any problems down the line."
Thomas Clayson
I've researched already and i'm using JQuery UI for my application to move things around. But i want to avoid the controls being overlapped while dragging. So i've done my home work already and i'm stuck at this point.
NLV
@sje - Using sortable() is a good idea. But i'm not able to drag the controls outside the 'sortable' parent. But i want to, actually. I just want to avoid overlapping while dragging a control over another control. But i dont want to restrict that. I want to dock that and move them automatically.
NLV
have a look at: http://interface.eyecon.ro/ specifically: http://interface.eyecon.ro/demos/sort.html
Thomas Clayson