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
| markup | |
| ------ | |
| <ul class='tabs'> | |
| <li><a href='#tab1'>first</a> <span class="dashArr"></span> </li> | |
| <li><a href='#tab2'>second</a></li> | |
| <li><a href='#tab3'>third</a></li> | |
| <li><a href='#tab4'>fourth</a></li> | |
| <li><a href='#tab5'>fifth</a></li> | |
| <li><a href='#tab6'>sixth</a></li> | |
| </ul> |
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
| markup | |
| ------ | |
| <div id="accordion"> | |
| <h2> <span>1</span> Checkout Method</h2> | |
| <div class="content"> | |
| .... | |
| </div> | |
| <h2> <span>2</span> Billing Information</h2> | |
| <div class="content"> |
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
| /* img */ | |
| -webkit-transform:scale(0.9); | |
| -moz-transform:scale(0.9); | |
| -o-transform:scale(0.9); | |
| -webkit-transition-duration: 0.5s; | |
| -moz-transition-duration: 0.5s; | |
| -o-transition-duration: 0.5s; | |
| /* img:hover */ | |
| -webkit-transform:scale(1.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
| // Declare Arrays | |
| imgList = new Array(); | |
| imgList["dog"] = new Array(); | |
| //Set values for each mouse state | |
| imgList["dog"]["out"] = "images/dog.png"; | |
| imgList["dog"]["over"] = "images/hvr-dog.png"; | |
| //Add the swapping functions |
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
| $("#element").click(function(e){ | |
| e.stopPropagation(); | |
| }); | |
| $(document).click( function(){ | |
| $("#elem").slideUp(); | |
| }); |
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
| markup | |
| ------ | |
| <div class="scan-form"> | |
| <h1> <span>Start</span> your free scan now!</h1> | |
| <form id="sacnForm" action="javascript:alert('success!');"> | |
| <input type="text" name="scanBar" id="scanBar" placeholder="Your website URL" value="" /> | |
| <input type="submit" value="start"> | |
| </form> | |
| <div class="alerts"> |
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
| //Standard | |
| $("selector").datepicker({ | |
| showOn: "button", | |
| buttonImage: "images/calendar.gif", | |
| buttonImageOnly: true, | |
| prevText: "Go", | |
| nextText: "Back", | |
| constrainInput: false | |
| }); |
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
| /*===== Comment ===============*/ |
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
| $("#where").after('what'); |
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
| background: url('background-image.jpg') no-repeat center center fixed; | |
| -webkit-background-size: cover; | |
| -moz-background-size: cover; | |
| -o-background-size: cover; | |
| background-size: cover; | |
| filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='.background-image.jpg', sizingMethod='scale'); | |
| -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='background-image.jpg', sizingMethod='scale')"; |