JQuery Remove Parent Elements
I have some third party HTML that looks like this: ).closest('tr').hide();
Solution 2:
To remove the TR
completely
$('tr [id$="lblURL"]').closest('tr').remove();
Solution 3:
You can try using .remove instead of hide, $('#element').parent.remove();
Post a Comment for "JQuery Remove Parent Elements"