Is there a way to determine if an image lacks the height style property?
Exploring CSS in HTML
<img id="image" src="images/sports/sports9.png" style="width:100px">
Using jQuery
if($('#image').css('height') == 0)
{
var imageWidth = $("#image").width();
$("#image").css("width",""+(imageWidth-1)+"px");
}