Please check out this jsfiddle link:
As you can see there is
INPUT FIELD & BOX
I want the box to appear only when text is typed in the input.
How is this done?
Thanks!
James
|
Please check out this jsfiddle link: As you can see there is INPUT FIELD & BOX I want the box to appear only when text is typed in the input. How is this done? Thanks! James |
|||
|
Start the box out with
|
|||||
|
|
Something like this with jQuery:
or change .change to .click |
|||
|
|
|
Binding to "change" is usually not super-handy, since it usually doesn't fire until you tab or click away from the element. However, polling isn't the answer either. original answer: http://jsfiddle.net/xNEZH/2/ super-fantastic new answer: http://jsfiddle.net/4MhKU/1/
The setTimeout is because cut and paste events fire BEFORE the text is cut or pasted. |
|||||||||||
|
onkeyup="document.getElementById('box').css.visibility = (this.value.length > 0) ? 'none' : 'block'on the input field. – Marc B Nov 22 '11 at 19:52