<!DOCTYPE HTML>
<html>
<head>
<style>
.divo-divnoe {
width: 100px;
height: 100px;
border: 1px solid #666;
background: #dbdbdb;
}
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.js"></script>
</head>
<body>
<div class="divo-divnoe">click me!</div>
<script>
$(function() {
$('.divo-divnoe').on('click', function() {
alert($(this).width() + ' пикселей в ширину');
alert($(this).css('width') + ' в ширину');
});
});
</script>
</body>
</html>