Simple redirect to a URL:
<script type="text/javascript">
window.location.replace('http://www.google.com/');
</script>Redirect to a URL and pass through URL parameters and #anchor fragments
| <script> | |
| window.trackConversion = function() { | |
| $('body').append('<iframe src="clkg/http/http/unbouncepages.com/blankpage/" style="display: none"></iframe>'); | |
| }; | |
| lp.jQuery(function($) { | |
| $('#lp-pom-button-11').click(function () { | |
| trackConversion(); | |
| }); |
Simple redirect to a URL:
<script type="text/javascript">
window.location.replace('http://www.google.com/');
</script>Redirect to a URL and pass through URL parameters and #anchor fragments
<script>
window.module.lp.form.data.validationRules['field_name'].digits = true;
</script>Replace 'field_name' with the ID of your form field you want to add this validation to.
Youtube Video Background for Unbounce pages - Minified
See full instructions here: https://getsatisfaction.com/unbounce/topics/how-can-i-create-a-youtube-video-background
<script>
// Youtube Video Background for Unbounce. V1.2
| <script> | |
| // unbounce-horizontal-forms 7453328 | |
| function HorizontalForm(a,b){var c=this;this.spacing=a,this.submitPlacement=b,this.$=window.lp.jQuery,this.$(function(){c.$form=c.$(".lp-pom-form").eq(0),c.$fields=c.$("div.lp-pom-form-field"),c.$button=c.$(".lp-pom-form .lp-pom-button").eq(0),"manual"!==c.submitPlacement&&(c.$fields=c.$fields.add(c.$button)),c.doLayout()}),this.$(window).resize(function(){c.doLayout()})}HorizontalForm.prototype.doLayout=function(){for(var a=this.$fields.eq(0).width()+this.spacing,b=this.$fields.eq(0).height(),c=this.$form.parent().width()-this.$form.position().left,d=0,e=0,f=0;f<this.$fields.length;f++){field=this.$fields.eq(f),e=0===f?e:e+a,e+a>c&&(d=0===f?d:d+b+this.spacing,e=0,b=field.height());var g=d;if(field.is(".lp-pom-button"))if("newline"===this.submitPlacement)g=d+b+spacing,e=0;else{g=d+19;var h=this.$form.find(":text").eq(0).height();field.css("height",h-1+"px")}else this.$(field).children("label").length||(g=d+19);field.css({top:g+"px",left:e+"px"}),field.height( |
| <script src="//a.unbounce.com/s/javascripts/jquery/jquery-ui.1.8.16.min.js"></script> | |
| <script> | |
| $(document).ready(function() { | |
| var currentDate = new Date(); | |
| $( "#your_date_field" ).datepicker(); | |
| $( "#your_date_field" ).datepicker("setDate", currentDate); | |
| }); | |
| </script> |
| <style> | |
| #fancybox-content { | |
| overflow: auto; | |
| -webkit-overflow-scrolling: touch !important; | |
| } | |
| </style> |
| <script> | |
| //Replace #frame1 with the ID of your iframe | |
| $('#frame1').attr('src', (function() { | |
| return $('#frame1').attr('src') + window.location.search; | |
| })()); | |
| </script> | |
| If iframe URL already has a query string, append parameters using script below | |
| <script> |
| <script> | |
| //Replace #lp-pom-button-10 with your button's ID | |
| $('#lp-pom-button-10').click(function() { | |
| $.ajax({ | |
| type: 'POST', | |
| data:(window.location.search.slice(1)), | |
| url: 'http://requestb.in/pfyauwpf' //Replace this URL with your POST handler endpoint URL | |
| }); | |
| }); | |
| <script> | |
| $(function() { | |
| $(".lp-pom-form .lp-pom-button")[0].click(); | |
| }); | |
| </script> |