Skip to content

Instantly share code, notes, and snippets.

View ericelliott's full-sized avatar
💭
https://leanpub.com/composingsoftware

Eric Elliott ericelliott

💭
https://leanpub.com/composingsoftware
View GitHub Profile
<input type="text" class="h5-email" required />
@ericelliott
ericelliott / gist:851320
Created March 2, 2011 17:25
load-in-dialog
<a href="/pages/shipping2 .regular-content" data-zq-dialog-settings='{
"dialogClass": "some-class-name",
"width": 800,
"height": 600,
"closeButton": true
}'>Dialog AJAX Load Test</a>
@ericelliott
ericelliott / datepicker.js
Created March 2, 2011 17:38
datepicker-sample
$body.delegate('.datepicker', 'change', function () {
zQ.alert('Date change triggered.', {
"closeButton": true
});
});
@ericelliott
ericelliott / gist:851356
Created March 2, 2011 17:44
link-anything
<div data-zq-href="http://google.com/" title="Go to Google.com">
<span>data-zq-href="http://google.com/" Link any element.
This whole line is linked.
<a href="http://google.com/">Google</a></span></div>
@ericelliott
ericelliott / alert-dialog.html
Created March 2, 2011 17:54
alert-dialog.js
<div class="alert-dialog"><button>Click for zq-alert dialog sample.</div>
@ericelliott
ericelliott / args.js
Created June 24, 2011 08:05
Polymorphic functions and multiple dispatch in JavaScript
var args = [].slice.call(arguments, 0);
@ericelliott
ericelliott / common-iteration.js
Created June 25, 2011 10:21
Array iteration examples.
(function () {
var knights = ['King Arthur', 'Sir Lancelot', 'Patsy', 'Sir Robin', 'Sir Bedevere', 'Sir Galahad'];
for (var i = 0; i < knights.length; i++) {
console.log(knights[i] + ': bunny kibble.');
}
}());
@ericelliott
ericelliott / jsonp.js
Created December 15, 2011 22:51
//The U.S. President's latest tweet... var obamaTweets = "http://www.twitter.com/status/user_timeline/BARACKOBAMA.json?count=5&callback=JSONPCallback"; jsonp.fetch(obamaTweets, function(data) {console.log(data[0].text)}); /* console logs: From the O
var jsonp = {
callbackCounter: 0,
fetch: function(url, callback) {
var fn = 'JSONPCallback_' + this.callbackCounter++;
window[fn] = this.evalJSONP(callback);
url = url.replace('=JSONPCallback', '=' + fn);
var scriptTag = document.createElement('SCRIPT');
scriptTag.src = url;
@ericelliott
ericelliott / getConfig
Created April 22, 2012 23:54
Arguments / named params polymorph
/**
* The user can pass in the formal parameters, or a named
* parameters object in the first argument. Either way,
* we need to initialize the variables to the expected
* values.
*
* @param {String} optionNames Parameter names.
*
* @return {object} New configuration object.
*/
@ericelliott
ericelliott / mdn-bind.js
Created July 19, 2012 01:28
MDN .bind() shim
if (!Function.prototype.bind) {
Function.prototype.bind = function (oThis) {
if (typeof this !== "function") {
// closest thing possible to the ECMAScript 5 internal IsCallable function
throw new TypeError("Function.prototype.bind - what is trying to be bound is not callable");
}
var aArgs = Array.prototype.slice.call(arguments, 1),
fToBind = this,
fNOP = function () {},