This topic is: not resolved
-
First of all, big thanks for this plugin which is awesome.
But one feature I feel is missing is the ability to simply have the form fade out on submission when using AJAX.
I mean, why have the form reset or refresh – make it hide seems more of a useful feature and something other form plugins do as standard.For now, I do it myself by adding some Jquery (see below), but having that as a checkbox in the settings to turn on/off would be awesome.
thanks,
Here’s the code I added to my site:
$j('body').bind('dhvc_form_after_submit',function(event, form){ $j('.dhvc-form-inner').hide(); $j('.dhvc-form-action').hide(); });