I have a submit link with this javascript to submit the jsp webpage
<a href="#" onclick="javascript:confirmSubmit(contextPath);"
after submit , controller takes lot of time to process and redirects to a list page.
I want
(1) when use click this submit link , this link to disable to avoid double clicking
(2) showing a message "System is processing your request . Please wait"
What changes I should be doing in my code to achieve this goal ?
Please suggest