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 type="text" class="h5-email" required /> |
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
<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> |
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
$body.delegate('.datepicker', 'change', function () { | |
zQ.alert('Date change triggered.', { | |
"closeButton": 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
<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> |
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
<div class="alert-dialog"><button>Click for zq-alert dialog sample.</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
var args = [].slice.call(arguments, 0); |
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 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.'); | |
} | |
}()); |
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 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; |
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
/** | |
* 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. | |
*/ |
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
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 () {}, |