Answers for "how to move a div to the right using a funvtion"

0

how to move a div to the right using a funvtion

window.addEventListener('click', function(e){
  if (document.getElementById("ClickBox").contains(e.target)) {
    var boxxy = document.getElementById("ClickBox");
    boxxy.style.left = (boxxy.offsetLeft + 50) + 'px';
  }
});
Posted by: Guest on December-25-2020

Code answers related to "how to move a div to the right using a funvtion"

Browse Popular Code Answers by Language