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
/* Functions | |
**************************************************************/ | |
var windowWidth = $(window).width(); | |
// Mobile Menu Function | |
function mobileMenu(menu){ | |
var mainMenu = $(menu), | |
menuButton = mainMenu.before('<a href="#" class="menuButton"><i class="icon"></i>Menu</a>'); | |
$('.menuButton').on('click', function(e){ |
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
https://news.google.com/news/feeds?gl=us&hl=en&ie=UTF-8&output=rss&q=SEARCH TERMS GO HERE&um=1 |
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
function GetURLParameter(sParam){ | |
var sPageURL = window.location.search.substring(1); | |
var sURLVariables = sPageURL.split('&'); | |
for (var i = 0; i < sURLVariables.length; i++){ | |
var sParameterName = sURLVariables[i].split('='); | |
if (sParameterName[0] == sParam){ | |
return sParameterName[1]; | |
} | |
} | |
} |
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
var iOS = ( navigator.userAgent.match(/(iPad|iPhone|iPod)/g) ? true : false ); |
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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" | |
"http://www.w3.org/TR/html4/loose.dtd"> | |
<html lang="en"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
<title>Campaign Monitor Newsletter</title> | |
<style> | |
a:hover { | |
text-decoration: underline !important; |
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
<!--*********************************************************************************************** | |
* Dont Rip Off Other People Work - If you would like to use something from the site or would | |
* like to know how we did somthing please just shoot me an email: [email protected] | |
* Copyright @ 2013 - Bluleadz Inbound Marketing | |
* 866.995.8720 | |
* [email protected] | |
-//////////. | |
ohyyyyyyyyh/ | |
ohyyyyyyyyh/ |
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
$(function(){ | |
// Prevent click event on first tap on mobile devices | |
var parent = $('li.hs-item-has-children '); | |
$(parent).doubleTapToGo(); | |
}); |
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
<p><u>Using jQuery MD5 Plugin</u> | |
</p> | |
<br/>Enter Value : | |
<input type="text" id="txtValue" /> | |
<br/> | |
<br/> | |
<div id="dvValue"></div> |
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
<?php | |
if ($_SERVER['REQUEST_METHOD'] == "GET") { | |
header('Location:http://thefreshdish.com'); | |
$gtwPost = ""; | |
//Create string for GoToWebinar from same form POST data | |
$gtwPost = "WebinarKey=" . urlencode($_GET['WebinarKey']) | |
. "&Form=" . urlencode($_GET['Form']) | |
. "&Name_First=" . urlencode($_GET['firstName']) |
NewerOlder