I want the script to remember the position of the divs and the
collapsible state.
Thanks
Craig
On Sep 28, 1:44 pm, Mike McNally <emmecin...@gmail.com> wrote:
> It might help if you'd mention what it is you want to *do* with the plugin.
>
>
>
>
>
> On Mon, Sep 28, 2009 at 3:32 AM, craigeves <craige...@googlemail.com> wrote:
>
> > I'm really stuck in adding the cookies plugin to the sortables script
> > I have below. I don't even know where to begin. Can anyone help?
>
> > <script type="text/javascript">
> > $(document).ready(function(){
> > $(".column").sortable({
> > connectWith: '.column',
> > cursor: 'hand',
> > handle: 'h3',
> > opacity: 0.8,
>
> > change: function(e, i) {
> > // Post data back to server or update cookie
> > }
> > });
> > $(".widget").append('<div class="close"></div>');
> > $(".close").click(function(){
> > if ($(this).parent().data("collapsed")=="yes") {
> > $(this).parent().data("collapsed","no");
> > $(this).parent().animate({height:$(this).parent().data
> > ("height")});
> > } else {
> > $(this).parent().data("height",$(this).parent().height());
> > $(this).parent().data("collapsed","yes");
> > $(this).parent().animate({height:30});
> > }
> > });
>
> > });
> > </script>
>
> > Many thanks in advance.
>
> > Craig
>
> --
> Turtle, turtle, on the ground,
> Pink and shiny, turn around.
No comments:
Post a Comment