javascript - Jquery event in the end of setting a text to an input -
I want to customize a JQuery event as a fact of the end of the set of text inputs. This idea is to set up a warning dialog when I have finished setting up the text. I have tried to do this but I should not do such things as I need any help.
PS: # id of # input ("# Geocomplete") keyboard (function () {var x = $ ('input [name = "lat"]'). Val () ; Alert (x);});
A keyboard event occurs when a keyboard key is released.
Keep ()
method triggers key events, or attaches a function to run when a keyboard event is over.
When an element loses focus then a blurred event occurs.
$ ("# geocomplete") .blur (function () {var x = $ ('input [name = " Lat "] '). Val (); Alert (x);});
Try it
Comments
Post a Comment