Jquery .show() to display div tag
- by kumar
I am using this code to display a grid
$('#table1 tr').bind('click', shows);
function shows() {
$('#table').show();
}
Where #table is the following HTML fragment:
<div id="table">
<p>shiva</p>
</div>
I am not able to show shiva?
is this right what I am doing here?
thanks