This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * запрещаем вводить цифры | |
| * http://learn.javascript.ru/keyboard-events | |
| */ | |
| // keydown event | |
| e = (e) ? e : window.event; | |
| var charCode = (e.which) ? e.which : e.keyCode; | |
| // если от 0 до 9 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| doctype html | |
| html | |
| head | |
| meta(charset = 'utf-8') | |
| meta(name='viewport', content="initial-scale=1.0, width=device-width") | |
| link(rel="stylesheet", href="css/main.css") | |
| title | |
| block title | |
| body | |
| block main |