Doubt with load (1) [closed]

0

I have the doubt that this "load (1)" meant in this input

<input type="text" class="form-control" id="q" placeholder="Código o nombre del producto" onkeyup='load(1);'>

As I see in the file there are other load (1) like here but in no case I see that the load function anywhere. Could this be part of JQuery?

    
asked by RicardoKra 31.10.2018 в 18:22
source

1 answer

1

It means that the keyup event is calling a load() function that is declared in one of the scripts of your page. If there is no such function, you must raise a ReferenceError: load is not defined .

    
answered by 31.10.2018 в 18:28