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
| <p><a class="sectionToggle" href="#">Toggle Section 1</a></p> | |
| <div class="hiddenSection"> | |
| <p>Hi! This is a hidden section</p> | |
| </div> | |
| <p><a class="sectionToggle" href="#">Toggle Section 2</a></p> | |
| <div class="hiddenSection"> | |
| <p>Hi! This is another hidden section</p> | |
| </div> |
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
| $(document).ready(function() { | |
| $.extend({ | |
| getUrlVars: function() { // function to pull parameters out of the URL | |
| var vars = [], | |
| hash; | |
| var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&'); | |
| for (var i = 0; i < hashes.length; i++) { | |
| hash = hashes[i].split('='); | |
| vars.push(hash[0]); | |
| vars[hash[0]] = hash[1]; |
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
| <p><a class="sectionToggle" href="#">Toggle Section 1</a></p> | |
| <div class="hiddenSection"> | |
| <p>Hi! This is a hidden section</p> | |
| </div> | |
| <p><a class="sectionToggle" href="#">Toggle Section 2</a></p> | |
| <div class="hiddenSection"> | |
| <p>Hi! This is another hidden section</p> | |
| </div> |
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
| <form name="signup" action="http://forms.marylandrieu.com/save" method="post"> | |
| <input type="hidden" name="ActivityCode" value="join" /> | |
| <input type="hidden" name="SuccessUrl" value="http://www.marylandrieu.com/privacy/?id=0002" /> | |
| <input name="EmailAddress" id="dataEmail" class="input" style="width: 130px" onmouseover="style.borderColor='#d6eafa';" onmouseout="style.borderColor='#5484ab';" onblur="if(this.value=='')this.value='Enter Your Email Address';style.borderColor='#5484ab';" onfocus="if(this.value=='Enter Your Email Address')this.value='';style.borderColor='#d6eafa';" value="Enter Your Email Address" /> | |
| <input type="text" name="PostalCode" class="input" style="width: 50px" onmouseover="style.borderColor='#d6eafa';" onmouseout="style.borderColor='#5484ab';" onblur="if(this.value=='')this.value='Zip Code'; style.borderColor='#5484ab';" onfocus="if(this.value=='Zip Code')this.value=''; style.borderColor='#d6eafa';" value="Zip Code" /> | |
| <input class="submit" type="submit" name="Submit" value="GO |
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
| $('#sign-page').appendTo('#signupFloat'); | |
| OR SOMETHING MORE LIKE | |
| $('.supporterInfo').css({'float': 'right', 'width': '250px'}).insertBefore('.description'); |
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
| $(document).ready(function(){ | |
| // do something | |
| }); |