9 lines
228 B
JavaScript
9 lines
228 B
JavaScript
$(document).ready(function () {
|
|
$(".button-disable").click(function () {
|
|
$(this).prop('disabled', true);
|
|
$(this).text('Proses...');
|
|
$(this).closest('form').submit();
|
|
return false;
|
|
});
|
|
});
|