window.addEventListener('click', function(e){ if (document.getElementById("ClickBox").contains(e.target)) { var boxxy = document.getElementById("ClickBox"); boxxy.style.left = (boxxy.offsetLeft + 50) + 'px'; } });