I want to set the height on a div when the div is more than 100px in height.
For example, when the content of the div makes the div\'s height fill more than 100px, I wan
You can try
if($("divID").height() > 100){ $("divID").css("height","200px"); }