Link to home
Start Free TrialLog in
Avatar of Jeff swicegood
Jeff swicegood

asked on

How to make webapp give "Processing" feedback after user hits Submit

I just want to eliminate that 10 seconds of deadness when the user hits "submit" on a Credit card payment. I want to display "Pressing...please wait do not press submit again" somewhere on the page. I guess there are multiple ways to do this. I have included the code for the page. I haven't tried anything yet. Looking for the general way to solve the problem.
keyin.txt
ASKER CERTIFIED SOLUTION
Avatar of rrz
rrz
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
I tested your code. You probably want to add a href attribute  to your link.
><p><a  onClick="proceed();" class="cssbutton">Proceed</a></p>  
try using  
<p><a  href="#"  onClick="proceed();" class="cssbutton">Proceed</a></p>
Avatar of Jeff swicegood
Jeff swicegood

ASKER

Awesome. It worked!