Get element height
Description
The following code shows how to get element height.
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() {<!-- www . j a v a 2 s.c om-->
$('input').load(function() {
if ($(this).height() > 100) {
$(this).addClass('big');
} else {
$(this).addClass('small');
}
});
});
</script>
</head>
<body>
<input type="text" />
</body>
</html>