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 page_id; | |
var page; | |
var title; | |
var description; | |
var page_url; | |
//Signup page | |
if (Request.getParameter("signup_page_KEY")) { | |
page_id=Request.getParameter("signup_page_KEY"); |
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 title; | |
var description; | |
//Get all url parameters | |
var params = Request.getParameterList(); | |
//Find the very first parameter (always page key), grab the name and value | |
var page_param = params[0]['name']; | |
var page_id = params[0]['value']; | |
//Strip out the '_KEY' string, so we get just the page type |
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 title; | |
var description; | |
var image | |
var params = Request.getParameterList(); | |
var key_pattern = /_KEY/i; | |
for(var index in params) { | |
if index.match(key_pattern) |
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
<? | |
//Initialize a couple of variable's we'll need later | |
var title = 'Page', | |
description = 'Default description', | |
image, | |
page_type, | |
page, | |
page_url, | |
page_param, |
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" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> | |
<script> | |
(function ($) { | |
$.salsaform = function () { | |
console.log($('#foo')); | |
}; | |
})(jQuery); | |
$(function(){ | |
$.salsaform(); |
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" src="https://assets.trilogyinteractive.com/shared/jquery-salsaforms-1-0/salsaforms.js"></script> | |
<script>$(document).ready(function(){salsaForm({validate:true,prettify:true,restructure:true,responsive:true,mobile:true,buttonText:false,submit:false,dynamic:false,buttonText:'Sign up!'});});</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
<script type="text/javascript"> | |
$(document).ready(function() { | |
$('.fancybox').fancybox(); | |
$("#inline").fancybox({titleShow: false}).trigger('click'); | |
}); | |
</script> | |
<style type="text/css"> | |
.fancybox-custom .fancybox-skin { |
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html> | |
<head> | |
</head> | |
<body bgcolor="#ffdfa2"> | |
<p><style type="text/css"> | |
p {margin: 1em 0;} | |
#outlook a{padding:0;} | |
body{width:100% !important; margin:0; padding:0; -webkit-text-size-adjust:none; -ms-text-size-adjust:none;} | |
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"> | |
$(function() { | |
$('#signup').trilogyForm({ | |
redirectOptions: { | |
parameterMap: { | |
refcode: 'ReferrerSourceCode', | |
sc: 'ReferrerSourceCode' | |
} | |
} | |
}); |
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 () { | |
var original = $('.signerCount').html() | |
var text = original.replace('total signers','citizen co-sponsors and counting') | |
$('.signerCount').html(text) | |
}) |
OlderNewer