Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 535 Bytes

result.remove.md

File metadata and controls

22 lines (16 loc) · 535 Bytes

Result.remove

The remove function removes elements from the element specified by the most recent runat call. It can only be called once per runat. Subsequent calls within the same runat have no effect.

Sample

var result = new Result();
result
.runat("#table1")
.remove("tr");

API

Calling Returning
result. remove ( selector ) Result
Parameters Type Description
selector String A jQuery selector identifying the elements to be removed.