jquery 类似 igoogle jQuery UI & sortable/draggable UI modules & jQuery COOKIE pl

最近好多人问我怎么实现类似google的 igoogle 可以拖拽 可关闭的应用!

下面这个demo 和goole的很相似 做的很好了 
http://nettuts.s3.amazonaws.com/127_iNETTUTS/demo/index.html

但是这个有一个小小的不足:关闭了的应用 没有存储在cookie中。

简单的修改了一下代码
iNettuts.savePreferences();
 },function () {
      $(this).wrap('<div/>').parent().slideUp(function () {
       $(this).remove();
	iNettuts.savePreferences();
   });
   });

$('.widget').each(function(){
if (cookie.indexOf(this.id) <= -1){
$(this).remove();
}
})

    $('.widget').each(function(){
			if (cookie.indexOf(this.id) <= -1){
				$(this).remove();
			}
		})
        /* All done, remove loading gif and show columns: */
        $('body').css({background:'#000'});
        $(settings.columns).css({visibility:'visible'});



修改后就可以保存住删除的应用了

你可能感兴趣的:(jquery,UI,css,qq,Google)