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 style="height:100%"> | |
<link href="style.css" rel="stylesheet"> | |
<div> | |
<label>Totaal: <input id="yy" style="width:80px;"></label> | |
<label><input id="b" type="checkbox">'</label> | |
<label><input id="c" type="checkbox">"</label> | |
</div> | |
<textarea placeholder="paste here!" id="a"></textarea> | |
<script src="script.js"></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
<!DOCTYPE html> | |
<script> | |
// Do anything in this function. | |
function isOkForDomain (a) { | |
a = a.toLowerCase(); | |
return a.indexOf('/booking/') === -1 && | |
a.indexOf('/beschikbaarheden/') === -1 && | |
a.indexOf('/reviews/') === -1 && | |
a.indexOf('/prijzen/') === -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
// Set testable values; | |
window.Type = { | |
Number: 1, | |
String: 'a', | |
Function: function(){} | |
} | |
// Add a hint method; | |
Function.prototype.hint = function(){ |
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(){ | |
'use strict'; | |
$('[data-slider]').each(function(){ | |
function d(a,b){ | |
return parseFloat(a.attr(b) || a.attr('data-'+b)); | |
} | |