I know how to validate a form using Semantic UI, and can even read in console the message \"Form has no validation errors, submitting.\" However, where is this submitting to? I
Semantic UI has it's own API to submit form. for example:
$('.ui.form .submit.button') .api({ url: 'server.php', method : 'POST', serializeForm: true, beforeSend: function(settings) { }, onSuccess: function(data) { } });