I have the following code:\[code\]<table id="my_table"><tr> <td> <button class="btn_save" value="http://stackoverflow.com/questions/15557716/1">Save</button> </td></tr></table>\[/code\]I want to select that buttonI have tried:\[code\]$('#my_table .btn_save').click......$('table#my_table .btn_save').click......$('table td .btn_save').click......$('table td :button.btn_save').click......\[/code\]nothing seems to work, what am I missing?btw, I cant put an id on the button because this will be a dynamycally generated table with lots of buttons, thats why I chose the class way.