Skip to content

Instantly share code, notes, and snippets.

@3v0k4

3v0k4/index.html Secret

Last active March 5, 2025 21:48
Show Gist options
  • Select an option

  • Save 3v0k4/47fcdc2dfc1661cfb240748fc0d97f1b to your computer and use it in GitHub Desktop.

Select an option

Save 3v0k4/47fcdc2dfc1661cfb240748fc0d97f1b to your computer and use it in GitHub Desktop.
<style>
button {
font-size: 1.5rem;
}
span {
font-weight: bold;
margin-left: 1rem;
}
</style>
<button>+</button>
<span>0</button>
<script>
document.querySelector('button').addEventListener('click', () => {
const span = document.querySelector('span')
const i = parseInt(span.innerText, 10)
span.innerText = String(i+1)
})
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment