jquery 1.3.2 with jquery-ui-personalized-1.6rc2.min.js
I am using http://james.padolsey.com/javascript/inettuts-with-cookies/ to show the widgets in user's dashboard as igoogle.
This plugin is not supporting with the jquery 1.3.2 and jquery-ui-personalized-1.6rc2.min开发者_JAVA百科.js.
But it works fine with the older jquery version 1.2.6.
Does anyone faced this problem? How can i make it to work?
change var notSortable = ''; to var notSortable = null;
I struggled for a while with this one, finally got it to work in all browser versions with this combination
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery-ui-1.7.3.custom.min.js"></script>
My jquery ui is linked locally so you'll have to download your own copy.
Cheers
精彩评论