I have a Local HTML document that I want to have an Anchor Tag (<a>
) open a Website, however the URL Code being sent is
http://www.my%20%20%20%20%20%20%20%20firerules.net/
which apparently has 8 embedded spaces for some reason.
Here is the call (from within a Table (<tb>
) in the HTML document):
<a href="http://www.myfirerules.net" target="_blank">MFR.net Link</a>
The new browser window is opened, however the Address being opened is:
[http://www.my%20%20%20%20%20%20%20%20firerules.net/]
rather than
[http://www.myfirerules.net]
as the href=
says to do.
Can anyone tell me how to correct this?