I wrote a javascript bookmarklet which works well. It is rather long and it contains many single and double quotation marks as in the following toy example:

javascript:html="<a href='www.example.com'>example</a>";document.write(html);

Now I have to publish it on a web page, that is, I have to insert the javascript string as the url attribute inside an < a > tag in the html source code of the page, so:

<a href="javascript:...">this is my bookmarklet</a>

but obviously there is a conflict due to repeated double quotation marks. Is there any simple way I can write the bookmarklet javascript code inside an html code?

link|improve this question

2  
escape one or both types of quotes – c69 Jan 27 at 0:03
1  
does replacing " with %22 work? (in your href. so it'd be <a href="javascript:...%22something%22..."></a>) – TJ Ellis Jan 27 at 0:04
1  
there's also this website, that will encode all possible characters for your url: jlpoutre.home.xs4all.nl/BoT/Javascript/Utils/endecode.html I don't know whether this will work in your situation or not. – TJ Ellis Jan 27 at 0:06
feedback

1 Answer

You can URL encode characters in bookmarklets and the bookmarklet will work.

But also you can try using a bookmarklet "generator" to make it easier and faster

https://www.google.com/search?q=bookmarklet+generator

link|improve this answer
If you found my answer useful and accurate, please accept it. – DG. Mar 3 at 4:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.