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($){ | |
| $(document).ready(function() { | |
| var classes = [ 'style1', 'style2', 'style3' ]; // the classes you want to add | |
| $('.item').each(function(i) { // the element(s) you want to add the class to. | |
| $(this).addClass(classes[ Math.floor( Math.random()*classes.length ) ] ); | |
| }); | |
| }); | |
| })(jQuery); |
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
| // Loading scripts in footer | |
| (function($) { | |
| "use strict"; | |
| // example for document ready | |
| $(document).ready(function() { | |
| // Your code here | |
| }); | |
| }(jQuery)); |
NewerOlder