toggle disabled on input
$('boton').click(function(){ $('input').prop('disabled', function(i, v) { return !v; }); })