|
|
@ -21,24 +21,24 @@ $(function () { |
|
|
|
// });
|
|
|
|
// });
|
|
|
|
|
|
|
|
var i; |
|
|
|
i = 0; |
|
|
|
$('button[type=submit]').on('focus', function (e) { |
|
|
|
if(i<=0) |
|
|
|
alert('اگر فیلدها را وارد کردید دوباره کلیک کنید!'); |
|
|
|
i++; |
|
|
|
}); |
|
|
|
|
|
|
|
$("button[type=submit]").on("click", function (e) { |
|
|
|
|
|
|
|
$(this).attr('disabled', 'disabled'); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
$(document).on('submit', 'form', function (e) { |
|
|
|
if ($(this).validate()) { |
|
|
|
$(this).find('button').attr('disabled', 'disabled'); |
|
|
|
$(this).find('input[type=submit]').attr('disabled', 'disabled'); |
|
|
|
} |
|
|
|
}); |
|
|
|
|
|
|
|
$("input[type=submit]").on("click", function (e) { |
|
|
|
$(this).attr('disabled', 'disabled'); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
//var i;
|
|
|
|
//i = 0;
|
|
|
|
//$('button[type=submit]').on('focus', function (e) {
|
|
|
|
// if (i <= 0)
|
|
|
|
// alert('اگر فیلدها را وارد کردید دوباره کلیک کنید!');
|
|
|
|
// i++;
|
|
|
|
//});
|
|
|
|
//$("button[type=submit]").on("click", function (e) {
|
|
|
|
// $(this).attr('disabled', 'disabled');
|
|
|
|
//});
|
|
|
|
//$("input[type=submit]").on("click", function (e) {
|
|
|
|
// $(this).attr('disabled', 'disabled');
|
|
|
|
//});
|
|
|
|
}); |