I’m 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
Try this out