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
| [select* selectedState | |
| "Alabama|AL" "Alaska|AK" "Arizona|AZ" "Arkansas|AR" | |
| "California|CA" "Colorado|CO" "Connecticut|CT" "Delaware|DE" | |
| "Washington DC|DC" "Florida|FL" "Georgia|GA" "Hawaii|HI" | |
| "Idaho|ID" "Illinois|IL" "Indiana|IN" "Iowa|IA" "Kansas|KS" | |
| "Kentucky|KY" "Louisiana|LA" "Maine|ME" "Maryland|MD" | |
| "Massachusetts|MA" "Michigan|MI" "Minnesota|MN" "Mississippi|MS" | |
| "Missouri|MO" "Montana|MT" "Nebraska|NE" "Nevada|NV" | |
| "New Hampshire|NH" "New Jersey|NJ" "New Mexico|NM" "New York|NY" | |
| "North Carolina|NC" "North Dakota|ND" "Ohio|OH" "Oklahoma|OK" |