how do we check whether a input box is visible or not….then store its state into variable to be outpu via alert ?
right now i’m using and i think it wrong. can any body help ?
<input type="hello" name="hello" value="" style="visibility:hidden"/>
function testhideinput(){
var $input_state = $('input:text[name=hello]').is('visibility');
alert($input_state);
}
Try it like this.
That’s how it works in my code for a div.