$( document ).ready(function() { const errors = ""; if(errors !== '') showInq(errors); $('#inquiry').on('click', function(e){ e.preventDefault(); showInq(null); }); }); function showSuccess() { $.alert({ title: 'Успех', content: 'Запитването е направено успешно.' }); } function showInq(errors) { $.confirm({ boxWidth: '30%', title: 'Запитване', content: 'url:/properties/ajax/inquiry/?slug=&name=', onContentReady: function () { if(errors !== '') this.$content.find('form > div:first-child').before('
' + Object.values(errors)[0] + '
'); }, buttons: { formSubmit: { text: 'Изпрати', btnClass: 'btn-blue', action: function () { // all well var form = this.$content.find('.frm_property_inquiry'); form.submit(); } }, cancel: function () { //close }, } }); }