checks if the input value has changed with jQuery

2

I need to identify if the value of a input has changed with jQuery. I'm trying to do this:

$('input[name=cliente]').on('keyup', function(e) {
  // Aqui vou por minhas funções
 }

But it is not working. My input is named cliente .

    
asked by anonymous 15.08.2016 / 19:05

1 answer

2

I usually put in a "off" variable, and "inside" the event I check it out.

var textoCliente = '';
$('input[name=cliente]').on('keyup', function(e) {
    var textoAtualizado = $(this).val();
    if( textoAtualizado != textoCliente ){
        // Aqui vou por minhas funções
    }
    textoCliente = textoAtualizado;
}
    
15.08.2016 / 19:21