Как удалить элементы без свойства id
из коллекции (не из самой DOM), для которой был вызван плагин?
<span id="id737293" class="attach"></span>
<div class="attach"></span>
Вызов jQuery и плагин:
$('.attach').attach();
(function($) {
$.fn.attach = function(options) {
// Remove elements (without id) on which the plugin was invoked
var valid = ???;
// Loop each valid element (with id attribute) and process
valid.each(function() {
});
return this; // Maintain chainability
};
})(jQuery);