Skip to content

Instantly share code, notes, and snippets.

@searls
Created May 14, 2011 22:15
Show Gist options
  • Save searls/972696 to your computer and use it in GitHub Desktop.
Save searls/972696 to your computer and use it in GitHub Desktop.
Types in an alphabetic sort of your Netflix Instant queue
//Save this as a bookmarklet in your browser's bookmark bar & click it while viewing your netflix instant queue. If it looks right, click "Update Queue" to save the changes.
javascript:void((function($){$.each($('#qbody tr a.mdpLink').contents().toArray().sort(function(a,b){ return a.nodeValue > b.nodeValue ? 1 : -1; }),function(i,e){ $(e).closest('tr').find('input.o').val(i) });})(jQuery))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment