UNPKG

@anywhichway/lazui

Version:

Single page apps and lazy loading sites with minimal JavaScript or client build processes.

16 lines (15 loc) 312 B
const imports = { "nameError": "#name-error" } function onchange(){ let name = this.value; if(name.length < 5){ this.nameError.innerHTML = "Name must be at least 5 characters long"; }else{ this.nameError.innerHTML = ""; } } export { imports, onchange }