I need to put a link to a webpage through <a>. The link to the web page contains some request parameters, and I do not want to send it directly through the browser (this means that I want to use something similar to the POST FORM method).
<a href="www.abc.do?a=0&b=1&c=1>abc</a>
Am I using this inside a jsp page and is there a way to publish it via javascript or any other way when I don't pass the request parameters via the url?
source
share