I\'d like to create an HTML form submit button with the value \'add tag\', however, the web page is in Swedish, so I\'d like to have a different bu
Following the @greg0ire suggestion in comments:
In your server side, you'll do something like:
if (request.getParameter("add_tag") != null)
tags.addTag( /*...*/ );
(Since I don't know that language (java?), there may be syntax errors.)
I would prefer the solution, but it doesn't work as expected on IE < 9.