please help me fix my code!
March 8, 2007 6:41 AM
Subscribe
delicious java bookmarklet help
ok, trying to make a simple search bookmarklet for delicious that will search only my tags without using plus signs in the tag entry box. see the code below
javascript:user='twx';void(multitag=prompt('Add%20Tag1+Tag2+Tag3','));{location='http://del.icio.us/'+user+'/'+multitag};
I would like to be able search tags like this: music vinyl
rather than the curent method: music+vinyl
I know nothing about Java and cannot find an easy fix :-( Any help is greatly appreciated!
posted by sil3ntstatic to computers & internet (7 comments total)
1 user marked this as a favorite
javascript:user='twx';void(multitag=prompt('Add%20Tag1%20Tag%20 Tag3','));{location='http://del.icio.us/'+user+'/'+escape(multitag)}
I believe that will do what you want though I'm not sure delicious will support it.
posted by bitdamaged at 6:51 AM on March 8, 2007