Created
January 25, 2013 19:00
Revisions
-
adamawolf created this gist
Jan 25, 2013 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ //load jquery in console separately first var jq = document.createElement('script'); jq.src = "http://code.jquery.com/jquery-latest.min.js"; document.getElementsByTagName('head')[0].appendChild(jq); jQuery.noConflict(); //delete ALL entries currently listed in Manage Your Kindle screen idsToDelete = [] $('form[name="fionaDL"] input[name="contentName"]').each(function () { idsToDelete.push(this.value); }) $(idsToDelete).each(function() {Fion.deleteItem('deleteItem_' + this);})