Você está na página 1de 1

/* desabilita campo de texto

$('#searchInput').keyup(function () {
if ($(this).val() == '') {
//Check to see if there is any text entered
// If there is no text within the input ten disable the
button
$('.enableOnInput').prop('disabled', true);
} else {
//If there is text in the input, then enable the button
$('.enableOnInput').prop('disabled', false);
}
});
*/

Você também pode gostar