I'm trying to use a download link in an input type="button" that has an apostrophe, but it doesn't work the ways I've tryed and I can not use %27 in all links.
Eg:
<input value="Download" type="button" onclick='this.disabled=true;location.href="http://example/download/Don't.zip"; this.value="Starting.."'>
How can I make this works? Is that possible to also avoid this trouble if the download link has double quote (")? I need a solution that modifies the code itself instead of the link.