I was looking everywhere for this simple-ness HTML question on the internet this morning and I couldn’t find the answer (I had forgotten!)…
What if I don’t want to pass a value with a submit button, but I want to be able to rename the button?
<input type=”submit” name=”submit” value=”Submit Me” />
Typically you have something like that, our solution is very simple and in revolves around removing “name”, this is basically a variable definition and if you remove it, you will no longer have a “Submit+me=something” in your URL bar!
Enjoy!
<input type=”submit” value=”Submit Me” />