$(function() {
if($('#customSwitch1').is(':checked')) {
$( 'button[type="submit"]' ).prop("disabled", false);
} else {
$( 'button[type="submit"]' ).prop("disabled", true);
}
});
<div class="custom-control custom-switch mt-2">
<input type="checkbox" class="custom-control-input" id="customSwitch1">
<label class="custom-control-label" for="customSwitch1">Подтвердить</label>
</div>
<button class="btn btn-outline-warning m2-3" type="submit" data-style="zoom-in"><span class="ladda-label">Отправить</span></button>
$('div form').submit(function(event) {
event.preventDefault(); // отменяем отправку формы
// собираем данные
// отправляем
$.ajax({/* ... */}).done(function(result) {
// переход
window.location.href = "http://test.com";
});
});
Как это мне поможет?) там код не дописан даже)$(document).ready(function() {
$('.simple-ajax-popup').magnificPopup({
type:'ajax',
removalDelay: 300,
mainClass: 'mfp-fade',
closeOnContentClick: false,
callbacks: {
parseAjax: function(mfpResponse) {
mfpResponse.data = $(mfpResponse.data).find('#dle-content');
}
}
});
});