Skip to content

Instantly share code, notes, and snippets.

@gpbmike
Created September 3, 2008 20:47
Show Gist options
  • Save gpbmike/8666 to your computer and use it in GitHub Desktop.
Save gpbmike/8666 to your computer and use it in GitHub Desktop.
// preventing click behavior when sorting links using jquery-ui's (1.6b) sortable widget
'stop': function(e,ui) {
ui.item.find('a').click(function(e){
e.preventDefault();
});
setTimeout(function(){
ui.item.find('a').unbind('click');
},10);
addFeatured();
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment