Det height of td using jquery
Hi,I want to change the the height of td in an html table by jquery
i tried this
$('#table tr td').css('height', '10px');
but not working
How to solve this
Regards
Baiju
<script>
$(document).ready(function () {
$("table td").attr("height", "20px");
});
</script>