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
// Arrays | |
var x = ["7","?","X","X","Q", "?"]; | |
var y = ["?","X","Z","Q", "?", "?"]; | |
var find_dupes = function (array1, array2) { | |
/* Map Arrays, make uppercase if neccessary | |
var xx = array1.map(function(x){ return x.toUpperCase() }) | |
var yy = array2.map(function(x){ return x.toUpperCase() }) */ |
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
//Array | |
var y = ["?","X","Z","Q","W","W"]; | |
/*OPTION ONE*/ | |
var find_dupe = function (array) { | |
/* Map Arrays, make uppercase if wanted | |
var yy = array.map(function(x){ return x.toUpperCase() })*/ | |
// Sort function | |
var sorted_arr = array.slice().sort(); // We use slice to clone the array so the original array won't be modified) | |
var results = []; |
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
// Equal height function (finds tallest of all and matches) takes class/id/html-element | |
var equal_height = function equalheight(element) { | |
maxheight=0; | |
// Find Tallest of elements | |
$(element).each(function(){ | |
maxheight = $(this).height() > maxheight ? $(this).height() : maxheight; | |
}) | |
// Make all elements the same height. | |
$(element).height(maxheight); | |
}; |
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
// Array | |
var x = ['x','x','y','q','x']; | |
var list_no_dupes = function(ogArray) { | |
// Filter and return new array | |
var newArray = ogArray.filter(function(ele, pos) { | |
return ogArray.indexOf(ele) === pos; | |
}); | |
return newArray; | |
}; |
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
/* Load the Google reCAPTCHA API : Make sure it loads somewhere above the insert code--> | |
<script src="https://www.google.com/recaptcha/api.js" async defer></script> | |
*/ | |
/* Main code that inserts the reCAPTCHA into the marketo form */ | |
// Wait for Marketo form to load | |
MktoForms2.whenReady(function (form) { | |
// Insert the recap div after the last form row | |
$( '<div id="recap"></div>' ).insertAfter( ".mktoFormRow:last-of-type" ); | |
// render the recap : replace with your site key |
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
UPDATE wp_options SET option_value = replace(option_value, 'http://olddomain.com', 'http://newdomain.com') WHERE option_name = 'home' OR option_name = 'siteurl'; | |
UPDATE wp_posts SET guid = replace(guid, 'http://olddomain.com','http://newdomain.com'); | |
UPDATE wp_posts SET post_content = replace(post_content, 'http://olddomain.com', 'http://newdomain.com'); | |
UPDATE wp_postmeta SET meta_value = replace(meta_value, 'http://olddomain.com', 'http://newdomain.com'); |
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
// JS for grabbing utm params | |
var getRefQueryParam = function() { | |
var temp = {}; | |
document.location.search.replace(/\??(?:([^=]+)=([^&]*)&?)/g, function() { | |
var decode = function(s) { | |
return decodeURIComponent(s.split("+").join(" ")); | |
}; | |
temp[decode(arguments[1])] = decode(arguments[2]); | |
}); | |
return temp; |
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
// JS for grabbing utm params and parsing into url | |
var getRefQueryParam = function() { | |
var temp = {}; | |
document.location.search.replace(/\??(?:([^=]+)=([^&]*)&?)/g, function() { | |
var decode = function(s) { | |
return decodeURIComponent(s.split("+").join(" ")); | |
}; | |
temp[decode(arguments[1])] = decode(arguments[2]); | |
}); | |
return temp; |
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
// Taken from http://developers.marketo.com/blog/restrict-free-email-domains-on-form-fill-out/ | |
// Prepared by Ian Taylor and Murtza Manzur on 9/9/2014 - Modified Dillan Simmons 8/15/17 | |
(function (){ | |
// Please include the email domains you would like to block in this list | |
var invalidDomains = ["@gmail.","@yahoo.","@hotmail.","@live.","@aol.","@outlook.","@test."]; | |
MktoForms2.whenReady(function (form){ | |
form.onValidate(function(){ | |
var email = form.vals().Email; |
OlderNewer