JQuery remove () to remove object by variable
I am trying to do something like this:
var rowResult = $(template(data)).find(".progressBar").progressbar({ value : 0 }).end();
this.jQueryDialog.find("ul#filesList").append(rowResult);
$(rowResult).on("click", "button.removeButton", function() {
$("ul#filesList").remove(rowResult);
});
Why does append () work but remove () throws a type error ?:
TypeError: expr.replace is not a function
Line: expr = expr.replace(rattributeQuotes, "='$1']" ); jquery.js
+3
source to share
3 answers