$('form[name="x_domain"]').submit(function(e){
$('.data_res').html('');
$('.data_res').show('');
$('.resp').show('');
index = 0;
tld = [];
sld = $.trim($sld.val());
$tld.filter(':checked').each(function(){
tld.push($.trim(this.value));
});
if (sld && tld.length) {
$check.prop('disabled', true);
$.each(tld,function(key,val){
$('div[data-id="'+val+'"]').html('<img src="../images/domain/loader2.gif">');
console.log(val);
});
ajax();
}
return false;
});
$('form[name="x_domain"]').submit(function(e){
if (!$("form[.table_cell-1] input:checkbox:checked").length) {
alert("Вы не отметили ни один чекбокс!");
//выходим из submit
return false;
}