So I have this code:
<!DOCTYPE html>
<html>
<script>
score = 0
function hi(buttonID){
score += 1
document.getElementById("label123").innerHTML = score
}
</script>
<button onclick="hi(this)" id="Button123">
<img src="button.png" alt="Button" width="100px" height="100px" draggable="true">
</button>
<label id="label123">Click it!</label>
<h1> clicker.io </h1>
</html>
And I want to make the button (Button123) draggable. This will make it so that the user can experience the ability to move the button anywhere they want on the screen.