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
<form id="contact"> | |
<ul> | |
<li> | |
<label for="name">Name</label> | |
<input type="text" id="name" name="name" value="" /> | |
</li> | |
<li> | |
<label for="email">Email</label> | |
<input type="text" id="email" name="email" value="" /> | |
</li> |
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
input { | |
-webkit-box-sizing: border-box; | |
-moz-box-sizing: border-box; | |
box-sizing: border-box; | |
width: 100%; | |
} |
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($){ | |
var cache = {}; | |
$.pub = function (topic, args) { | |
cache[topic] && $.each(cache[topic], function () { | |
try { | |
this.apply($, args || []); | |
} catch (e) { | |
if (console) console.warn(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
var sub = function (e, callback) { | |
var handler; | |
if (document.addEventListener) { | |
handler = function (evt) { | |
callback(); | |
}; | |
document.addEventListener(e, handler, false); | |
} else if (document.attachEvent) { | |
handler = function (evt) { | |
if (evt.propertyName == 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"/> | |
<title>modals</title> | |
<link rel="stylesheet" href="style.css" media="screen" /> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script> | |
<script src="modal.js"></script> | |
<noscript> | |
<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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<title>Gist Fetch</title> | |
</head> | |
<body> | |
<h1>Separate Files</h1> | |
<h2>Contact_form.html</h2> | |
<a class="gistPlaceholder" href="https://gist.github.com/476405#file_contact_form.html">contact_form.html</a> |
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
<html> | |
<body> | |
... | |
<script src="separate_js_file.js"></script> | |
<script> | |
var _gaq=[['_setAccount', gaKeys[<%=config_id %>][<%=inst %>]],['_trackPageview'],['_trackPageLoadTime']]; | |
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];g.async=1; | |
g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js'; | |
s.parentNode.insertBefore(g,s)}(document,'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
$.ajaxPrefilter('json', function(options, orig, jqXHR) { | |
if (options.crossDomain && !$.support.cors) return 'jsonp' | |
}); | |
$.ajax({ | |
url: 'http://nodeserver:3000', | |
dataType: 'json', | |
success: callback, | |
xhrFields: { | |
withCredentials: 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
function exeCallback(callback, params) { | |
var context = window, | |
namespaces = callback.split('.'), | |
func = namespaces.pop(); | |
for (var i = 0, l = namespaces.length; i < l; i++) { | |
context = context[namespaces[i]]; | |
} | |
context[func].apply(context, 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
//lookup object | |
var gaKeys = { | |
'tdshs_ems': { | |
'01': 'UA-234234-23', | |
'02': 'UA-234234-24' | |
}, | |
'error' : 'UA-bad-code' | |
}; | |
var configId = '<param>'.toLowerCase(); //error condition is 'error' |
OlderNewer