Autoload
```vim
augroup htmljs
autocmd!
autocmd FileType html :source ~/.vim/htmljs.vim
autocmd FileType javascript :source ~/.vim/htmljs.vim
augroup END
```
```vim
iabbrev ce document.createElement
iabbrev cdv document.createElement("div")
iabbrev csp document.createElement("span")
iabbrev ae addEventListener
iabbrev aec addEventListener("click",
iabbrev ael addEventListener("load",
iabbrev aek addEventListener("keydown",
iabbrev dbod document.body
iabbrev cla classList.add
iabbrev clr classList.remove
iabbrev dbod document.body
iabbrev -> =()=\>
```