I would like to create an HTML button that acts like a link. So, when you click the button, it redirects to a page. I would like it to be as accessible as possible. I would also like it so there aren't any extra characters, or params in the URL.
How can I achieve this?
Update: I am currently doing this:
<form method="get" action="/sponsor">
<button type="submit" id="sponsorContinue">Continue</button>
</form>
but the problem with this is that in Safari and IE, it adds a question mark character to the end of the URL. I need to find a solution that doesn't add any characters to the end of the URL.