I'm with you on this one. I've been using Opera for a couple of months, and have had nothing but headaches with trying to use delicious. If anyone has any suggestions, it would be worth some credits.
editI don't have an answer for getting popular, tag suggestions, etc. But if you want fast bookmarking and tagging...
Ok, I hacked these bookmarklets together. Both of them end up giving you a blank screen and you have to click Back to get back to the page that you were at. Anybody have any ideas on that?
This one is just for tagging (just separate them with spaces):
javascript:(function(){t=prompt('Tags:');location.href='https://api.delicious.com/v1/posts/add?description='+encodeURIComponent(document.title)+'&tags='+escape(t)+'&url='+window.location.href;})()
This bookmarklet will set the description of the link to any text that you have highlighted on the page when you hit the bookmarklet and will ask for tags. If you don't have any text selected, it will use the page title like the code above:
javascript:(function(){d=document.getSelection();if(!d)d=encodeURIComponent(document.title);t=prompt('Tags:');location.href='https://api.delicious.com/v1/posts/add?description='+d+'&tags='+escape(t)+'&url='+window.location.href;})()
I started with the bookmarklets from
http://www.quickonli...okmarks-to-delicious and went from there.
Another editHere's one that doesn't go to a blank page and make you hit Back. Instead, it opens a little blank window that you can just close:
javascript:(function(){d=document.getSelection();if(!d)d=encodeURIComponent(document.title);t=prompt('Tags:');open('https://api.delicious.com/v1/posts/add?description='+d+'&tags='+escape(t)+'&url='+window.location.href,'delicious','toolbar=no,width=100,height=100')})()
I have CTRL D shortcut to the bookmarklet, so it's fast, fast, fast/
Last edit, I swearThis one asks for tags, gets the description from the title or any selected text, pops a small window into an unfocused tag, and closes that small window after 10 seconds.
javascript:(function(){d=document.getSelection();if(!d)d=encodeURIComponent(document.title);t=prompt('Tags:');setTimeout('TheNewWin.close();',10000);TheNewWin=open('https://api.delicious.com/v1/posts/add?description='+d+'&tags='+escape(t)+'&url='+window.location.href,'delicious','toolbar=no,width=100,height=100');TheNewWin.blur();})()
Carl