How can I remove an object with jquery.
$('.Line1').each(function (i, obj) {
if (obj.id != myVariable) {
}
});
See that I can't remove this object with $( ".hello" ).remove(); because it is an object. How can I do it with the code from above?
Thanks
obj=nulldelete obj.idto delete the id property from an obj.