Hey there,
I must admit, that I'm pretty much newbie to jQuery, though I want to somehow make this work.
I have a igoogle style content with sortable widgets with this code
HTML
<div class="column">
<div class="box">
<div class="box-header">
Header Widget
</div>
<div class="box-content">
<p>
Content widget
</p>
</div>
</div>
</div>
<div class="column">
<div class="box">
<div class="box-header">
Header Widget
</div>
<div class="box-content">
<p>
Content widget
</p>
</div>
</div>
</div>
jQuery
$(".column").sortable({
connectWith: '.column',
handle: '.box-header',
revert: 500
});
How do I get this work with cookie plugin?
Thanks for your time and help.