This file contains 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> | |
$( '.lp-pom-form .lp-pom-button' ).click(function() { | |
if (lp.jQuery('form').valid() == true) { | |
_gaq.push(['_trackEvent', 'form', 'button', 'submit']); | |
} | |
}); | |
</script> |
This file contains 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"> | |
var getUrlParams = function () { | |
var params = {}, | |
hash; | |
var hashes = decodeURI(window.location.href).replace(/\+/g," ").slice(window.location.href.indexOf('?') + 1).split('&'); | |
for (var i = 0; i < hashes.length; i++) { | |
hash = hashes[i].split('='); | |
params[hash[0]] = unescape(hash[1]); | |
} | |
return params; |
This file contains 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"> | |
jQuery(function(){ | |
jQuery('input#referrer').val(decodeURI(document.referrer)); | |
}); | |
</script> |
This file contains 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
<style type="text/css"> | |
#lp-pom-root .lp-pom-text a:link {text-decoration: none} | |
#lp-pom-root .lp-pom-text a:visited {text-decoration: none} | |
#lp-pom-root .lp-pom-text a:active {text-decoration: none} | |
#lp-pom-root .lp-pom-text a:hover {text-decoration: none} | |
</style> |
This file contains 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> | |
$(document).ready(function() { | |
$('#lp-pom-button-22').fancybox({ | |
type: 'iframe', | |
width: 840, | |
height: 480 | |
}); | |
}); | |
</script> |
This file contains 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
<style type="text/css"> | |
#lp-pom-root { | |
-webkit-background-size: cover !important; | |
-moz-background-size: cover !important; | |
-o-background-size: cover !important; | |
background-size: cover !important; | |
} | |
</style> |
This file contains 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> | |
$(document).ready(function(){ | |
$(".scroll").click(function(event){ | |
//prevent the default action for the click event | |
event.preventDefault(); | |
//get the full url - like mysitecom/index.htm#home | |
var full_url = this.href; |
This file contains 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"> | |
jQuery(function() { | |
jQuery('form input:text:visible:first').focus(); | |
}); | |
</script> |
This file contains 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"> | |
jQuery(function() { | |
jQuery(".lp-pom-image a[target='_self']").fancybox({ | |
'transitionIn' : 'elastic', | |
'transitionOut' : 'fade', | |
'overlayOpacity' : 0.8, | |
'overlayColor' : '#000', | |
'hideOnContentClick' : true | |
}); | |
}); |
This file contains 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> | |
$(document).ready(function(){ | |
$("[#lp-pom-button-21").click(function(event){ | |
event.preventDefault(); | |
$('html, body').animate({ scrollTop: $("#form").offset().top }, 1000); | |
}); | |
}); | |
</script> |
NewerOlder