Awesome evening guys,
I have added a table dynamically using the following jquery code.
$(#table tr:last).after('<tr><td class="tbValue"> </td></tr>');
After adding it, now I want to access it using the following code
$('.tbValue').click(function){
alert('this button is clicked');
});
To my surprise its not working. I think the button has an html property however I just cannot seem to get it.