Select disabled input
Description
The following code shows how to select disabled input.
Example
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){<!--from w ww.j av a 2 s .c om-->
alert($("input:disabled").length);
});
</script>
</head>
<body>
<form>
<input type="button" value="Input Button" disabled="disabled"/>
<input type="checkbox">java2s.com</input>
<input type="checkbox" />
<input type="checkbox" />
<input type="file" />
<input type="hidden" />
<input type="image" />
<input type="password" />
<input type="radio" />
<input type="reset" />
<input type="submit" />
<input type="text" />
<select><option>Option<option/></select>
<textarea></textarea>
<button>Button</button>
</form>
</body>
</html>