Trying to combine jQuery-Steps (http://www.jquery-steps.com) and Semantic UI (http://semantic-ui.com), code is below. SemanticUI validation loses inline popups, need help.
Also, when moving to the next step, how to validate Semantic UI fields first?
<script>
(function ($) {
$('#regform').form({
email_address: {
identifier: 'email_address',
rules: [{
type: 'empty',
prompt: 'First Name is required'
}]}
},{
on: 'blur',
inline: 'true'
}).steps({
headerTag: '#regform_sectionHeader',
bodyTag: '#regform_section'
});
})(jQuery);
</script>