This is what I'm trying. unable to generate alert with text "resized". Does resize event on table work?? If it doesn't how can i achieve it??
<!DOCTYPE html>
<html lang="en">
<head>
<script src="js/jquery.js"></script>
<script type="text/javascript">
$(function(){
$("#btn").click(function(e){
$("#normal").css("width", "1200px");
});
});
</script>
<script type="text/javascript">
function myFunction(){
alert("resized");}
</script>
</head>
<body>
<div class="center" >
<div style="float:left;">
<div style="height:100px; width: 50px; float:'left'">
<button style="height:30px; width: 150px; float:'left'" id="btn">Click</button>
</div>
<table id="normal" width="75%" border="0" cellpadding="0" cellspacing="0" style="float:left;" onresize="myFunction()">
<tr><th>header</th><th>header</th><th>header</th></tr>
<tr><td class="left">cell</td><td>cell</td><td class="right">cell</td></tr>
<tr><td class="left">cell</td><td>cell</td><td class="right">cell</td></tr>
<tr><td class="left bottom">cell</td><td class="bottom">cell</td><td class="bottom right">cell</td></tr>
</table>
</div></div>
</body>
</html>