*/Clone Element in DOM /*
const elementToClone = $('.className')[0]; // Element to be cloned
const clonedInMemory = elementToClone.cloneNode(true); // clone the element
$(clonedInMemory).insertAfter('className'); // Insert in another place