Below code will set/overwrite the width of dvWidth element using JQuery. You can download the Jquery from http://docs.jquery.com/Downloading_jQuery.
<script type="text/javascript" src="Script/jquery-1.3.2.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#dvWidth").height(500);
});
</script>
<div id="dvWidth" style="width:200px;height:50px">
<h1>Virendra Dugar</h1>
</div>
Enjoy..