I have a cfform with the following for reset and submit:
<a href="##" onclick="document.getElementById('form').reset()">clear</a>
<a href="##" onclick="document.getElementById('form').submit()">send</a>

Clicking the reset button clears the form but the goes to domain.com/#, as does 
the submit button.

I can change it to this, and it works properly, but hovering over the button 
does not change the pointer.
<a onclick="document.getElementById('form').reset()">clear</a>
<a onclick="document.getElementById('form').submit()">send</a>

Any way to do this?

Thanks.


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:324028
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to