vyacheslavkulik
9/13/2016 - 12:10 PM

toogle_but.js

$( "input[name='agree']" ).click(function() {
		$(".step-btn").prop("disabled", (_, val) => !val);
	}); //в ie11 не работает
	
	
	$(".btn-step-1").prop('disabled', function () {
		   return ! $(this).prop('disabled');
		});