Yeah, the CF form validation fires with the onsubmit method of the form, so you aren't going to be able to submit the form without the validation running unless you do something like Ike suggested which involves removing the onsubmit.
You would need to put code like what Ike suggested in the onclick of your new button. If your new button is type="submit", you wouldn't need the form.submit() part. ~Brad ----- Original Message ----- From: "s. isaac dealey" <[EMAIL PROTECTED]> To: "cf-talk" <[email protected]> Sent: Tuesday, November 11, 2008 11:04 PM Subject: Re: Disable <cfinput submit processing? How to? >I think this would work > > onclick="this.form.onSubmit=null; this.form.submit();" > > I haven't tested it though -- may get you started. :) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;207172674;29440083;f Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:315125 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

