5 lines
135 B
JavaScript
5 lines
135 B
JavaScript
$(document).ready(function()
|
|
{
|
|
$('#agree').change(function(){$('.btn-install').attr('disabled', !$(this).prop('checked'));});
|
|
});
|