You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456
  1. const isolated = document.querySelector('[isolate="true"]');
  2. const root = document.getElementById('root');
  3. root.childNodes.forEach(element => {
  4. element.remove()
  5. });
  6. root.appendChild(isolated);