bump...
West415 wrote:
>
> Hi,
>
> I have a page where users can drag and sort a set of divs. Each div is
> like a widget and the code below allows you to move divs around pretty
> easily. The problem for me is I want to somehow store and retrieve the
> position each div is in so when the page reloads they appear in the same
> order or when the user logs out and comes back in, they are in the same
> order.
>
> How can this be done?
>
> I have the following code:
>
> <script type="text/javascript">
> $(function() {
> $("#sortable").sortable({
> revert: true
> });
> });
> </script>
>
> <div id="sortable">
>
> <div id="divA">
> Panel A
> </div>
>
> <div id="divB">
> Panel B
> </div>
>
> <div id="divC">
> Panel C
> </div>
>
> </div>
>
>
> Thanks,
>
> -West
>
>
--
View this message in context:
http://old.nabble.com/Drag-and-Drop-and-Remember-Position--tp27010297s27240p27072008.html
Sent from the jQuery General Discussion mailing list archive at Nabble.com.