Advertisement
SergeyBiryukov

[Notabenoid] Remove Bookmarks

May 23rd, 2011
442
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. javascript:
  2. var allListItems = document.getElementById('Bookmarks').getElementsByTagName('li');
  3. for ( var i = 0; i < allListItems.length; i++ ) {
  4.     var currentListItem = allListItems[i];
  5.     var matches = currentListItem.childNodes[0].href.match( /(.*)\?.*#v(.*)/ );
  6.  
  7.     currentListItem.innerHTML += ' ' +
  8.     '<form name="deleteform' + i + '" style="display: inline" action="' + matches[1] + '" method="post">' +
  9.     '<input type="hidden" name="act" value="bm_rm">' +
  10.     '<input type="hidden" name="verse" value="' + matches[2] + '">' +
  11.     '[<a href="#" onclick="javascript:if ( confirm(\'Удалить эту закладку?\') ) document.deleteform' + i + '.submit();" style="color: red">x</a>]' +
  12.     '</form>';
  13. }
  14. void 0;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement