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
| /*! | |
| * minQuery example, inspired by former teacher JulianB @ | |
| */ | |
| var miniQuery = function(htmlElement){ | |
| function isMultiple(htmlElement){ | |
| var type = htmlElement.substring(0,1); | |
| return type != '#'; | |
| } | |
| function breakDownElement(htmlElement){ |
OlderNewer