Hey - I'm looking for a way to remove spaces from a <a href> tag.
I am wondering if there is anyway to code a link with spaces (or null identifiers) that will drop once the link is clicked - for example.. for more complicated reasons I cannot use www or .com in the <a href> link as it will not be read properly in the field it is being submitted.. I need to be able to write it something like:
<a href="ww w.mylink . com">
With spaces in such places or some other identifier - but when the link is clicked it needs to be read
www.mylink.com
without any spaces..
You have probably guessed that the original link would be read ww%20w.mylink%20.%20com I need the spaces removed but NOT replaced with %20.. how can I do this?