I want to use jQuery's remove() function to remove an item from the DOM.
The problem is that remove() requires a selector and I already have a reference to the element I want to remove in an object.
Given an element reference, say tableRow, is there any way to remove that element?
tableRowis a jquery object then just run remove on ittableRow.remove()