Posts by user57290 • 31 points
1 post
-
3
votes3
answers2984
viewsA: Delete a specific row from an html table with jquery
To delete a table row by its id: $('#iddalinha').hide(); But in your case the id you want is a date attribute: $('tr[data-id="iddalinha"]').hide();…