Events defined as elements attributes only fire on anchor elements. Event fires: ``` <a href="#" ontouchmove="console.log('move');">Move</a> ``` Event does not fire: ``` <button ontouchmove="console.log('move');">Move</button> ```