testing
by Dinesh Patra
HTML
<div id="test"></div>
CSS
#test {
width: 95%;
background-color: red;
height: 50px;
}
JavaScript
alert($("#test").width());
by Dinesh Patra
<div id="test"></div>
#test {
width: 95%;
background-color: red;
height: 50px;
}
alert($("#test").width());