Created
May 14, 2011 22:15
-
-
Save searls/972696 to your computer and use it in GitHub Desktop.
Types in an alphabetic sort of your Netflix Instant queue
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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