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
| function StartTagToken(){ | |
| } | |
| function EndTagToken(){ | |
| } | |
| function Attribute(){ | |
| } | |
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
| /* | |
| * Taken from http://sower.com.au/2011/06/jquery-multilevel-accordion-in-10-lines-of-code/ | |
| */ | |
| $(document).ready(function() { | |
| $('.menu li ul').hide(); | |
| $('.menu li a').click( | |
| function(evt) { | |
| evt.preventDefault(); | |
| evt.stopPropagation(); | |
| var openMe = $(this).next(); |
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
| /* | |
| * Taken from http://sower.com.au/2011/06/jquery-multilevel-accordion-in-10-lines-of-code/ | |
| */ | |
| $(document).ready(function() { | |
| $('.menu li ul').hide(); | |
| $('.menu li a').click( | |
| function(evt) { | |
| evt.preventDefault(); | |
| evt.stopPropagation(); | |
| var openMe = $(this).next(); |
NewerOlder