I'm trying to remove a value from a jquery object. Unfortunately my solution does not work.
Why doesn't it work? And what would be the best way to accomplish this.
$elems = $('.a');
html = 'lenght ='+$elems.length+'<br><br>';
var target = $elems[3];
//Why doesn't this work?
delete $elems[target];
html += 'lenght after delete ='+$elems.length;
$('body').append(html);
here is the jsfiddle