====== Adding ====== It is possible to add additional elements to current set of elements. ===== add( element ) ===== Adds more elements to the current element **Parameters:** * //element // Elements that will be added to current collection.
a
b
c
alert(Karma('#hi3').add('#hi2')); // [
c
,
b
]
===== addSelf( ) ===== Adds previously matched elements.
a
b
c
alert(Karma('#hi2').siblings().addSelf().get()); // [
a
,
c
,
b
]