8 lines
158 B
JavaScript
8 lines
158 B
JavaScript
document.querySelectorAll("#lyrics a").forEach(item => {
|
|
item.addEventListener("click", getAnnotation)
|
|
})
|
|
|
|
function getAnnotation(e) {
|
|
e.preventDefault()
|
|
}
|