$(function() {

$("input,textarea").jqBootstrapValidation({
    preventSubmit: true,
    submitError: function($form, event, errors) {
        // additional error messages or events
    },
    filter: function() {
        return $(this).is(":visible");
    },
});
$("a[data-toggle=\"tab\"]").click(function(e) {
    e.preventDefault();
    $(this).tab("show");
});

});

/*When clicking on Full hide fail/success boxes */ $('#name').focus(function() {

$('#success').html('');

});