For example, I want to get the DOM element, and then change, without it changing the behavior in the view:
//aqui pego o conteúdo da html
var content = $('.content').get(0);
//aqui eu reescrevo, porém ocorre que o $('.content') também está sendo alterado...???
var new_content = $(content).removeClass('ql-align-justify');
I want only the variable to be modified.