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
| /* | |
| Instructions: | |
| In the code below, replace the REPLACE WITH INFUSIONSOFT FIELD NAME with a # and the ID | |
| of the field(s) you want to make read-only. | |
| For example, if you were making the Email field read only, you would replace it with #inf_field_Email and the | |
| code would look like this: | |
| jQuery('#inf_field_Email').attr('readonly', true); // Be sure to leave single quotes in place |
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
| " Make IE Better Compatible " | |
| <!--[if IE]> | |
| <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> | |
| <![endif]--> | |
| ====================================================== | |
| IE6 Only | |
| ================== | |
| _selector {...} |
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
| <script type="text/javascript">// <![CDATA[ | |
| jQuery(window).bind("load", function() { | |
| jQuery("#checkoutWithPayPalLink").hide(); | |
| jQuery("#payPalType").parent().hide(); | |
| jQuery(".switchPaymentSelectionLink").hide(); | |
| }); | |
| // ]]></script> |
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
| .hvr-grow-shadow { | |
| box-shadow: 0 0 1px transparent; | |
| display: inline-block; | |
| transform: perspective(1px) translateZ(0px); | |
| transition-duration: 0.3s; | |
| transition-property: box-shadow, transform; | |
| vertical-align: middle; | |
| } | |
| .hvr-grow-shadow:hover, |
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
| $('#elm').hover( | |
| function(){ $(this).addClass('hover') }, | |
| function(){ $(this).removeClass('hover') } | |
| ) |
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
| var kkeys = [], konami = "38,38,40,40,37,39,37,39,66,65"; | |
| $(document).keydown(function(e) { | |
| kkeys.push( e.keyCode ); | |
| if ( kkeys.toString().indexOf( konami ) >= 0 ) { | |
| $(document).unbind('keydown',arguments.callee); | |
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
| //using async loading | |
| // Only do anything if jQuery isn't defined | |
| if (typeof jQuery == 'undefined') { | |
| if (typeof $ == 'function') { | |
| // warning, global var | |
| thisPageUsingOtherJSLibrary = true; | |
| } | |
| function getScript(url, success) { |
OlderNewer