dotar/vim/snippets/javascript-jquery/each.snippet
2011-11-17 16:00:49 -06:00

4 lines
116 B
Plaintext
Executable File

${1:obj}.each(function(index) {
${2:this.innerHTML = this + " is the element, " + index + " is the position";}
});