elclanrs / jq-idealforms-old

The ultimate framework for building and validating responsive HTML5 forms.
665 stars 95 forks source link

What's with the thank you dialog? #67

Closed capdiz closed 12 years ago

capdiz commented 12 years ago

Am using idealforms with rails just for the look and feel. When i submit my data a thank you dialog always comes up. How can i stop this. Regards

( $(document).ready(function() {
$('#new_recipe').idealforms(); }); )

elclanrs commented 12 years ago

That dialog is the default onSuccess action. You can overwrite it with your own code:

$('#new_recipe').idealforms({ onSuccess: function(){ ... } });
capdiz commented 11 years ago

Thanks a lot man!!