I have an element in which i want to find a specific class and remove those class.
example
JavaScript
x
5
1
editingElm = `<p><span class="editing-target">hello</span><span class="editing-target">Welcome to this virtual world</span></p>`
2
3
let elements = editingElm.find('.editing-target');// elements= [span,span] with the class
4
editingElm.removeClass('editing-target');
5
How can i loop over the elements array and remove those classes i found?