Click here to Skip to main content
15,914,642 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how to remove html table rows at runtime
Posted
Updated 30-Oct-11 20:37pm
v2

 
Share this answer
 
v2
Try this using jquery
C#
var row1 = $(this).parent().parent();// Selecting Row
row1.remove();// Removing Row
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900