HTML Tip of the Day!

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” />

This entry was posted in Hertzelle.com. Bookmark the permalink.

Comments are closed.