This file contains hidden or 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
| { | |
| "currency": "gbp", | |
| "card": "tok_1BsXU2Kq9YwkKz0GvyfHX3OR", | |
| "receipt_email": "xxx@gbradley.com", | |
| "metadata": { | |
| "email": "xxx@gbradley.com", | |
| "company": "GMB Technology Ltd", | |
| "first_name": "Graham", | |
| "last_name": "Bradley4", | |
| "phone": "0131 123 456", |
This file contains hidden or 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
| { | |
| "currency": "gbp", | |
| "card": "tok_1Br8aZKq9YwkKz0GY7NKlxQu", | |
| "receipt_email": "xxx@gbradley.com", | |
| "metadata": { | |
| "email": "xxx@gbradley.com", | |
| "company": "GMB Technology Ltd", | |
| "first_name": "Graham", | |
| "last_name": "Bradley3", | |
| "phone": "0131 123 456", |
This file contains hidden or 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 parts = decodeURI(window.location.search.replace('?','')).split('&'), | |
| i = parts.length, | |
| contact = []; | |
| while (i--) { | |
| parts[i] = parts[i].split('='); | |
| if (parts[i][1]) { | |
| if (parts[i][0] == 'email') { | |
| contact.push('send your CV with a covering letter to ' + decodeURIComponent(parts[i][1])); | |
| } else if (parts[i][0] == 'phone') { |
This file contains hidden or 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 _mb_ereg_search_all($str, $re, $resultOrder = 0){ | |
| // 0 mimics PREG_PATTERN_ORDER | |
| // 1 mimics PREG_SET_ORDER | |
| $matches = Array(); | |
| mb_ereg_search_init($str, $re); | |
| while (($m = mb_ereg_search_regs())){ | |
| $matches[] = $m; |
This file contains hidden or 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 divs = document.querySelectorAll ? document.querySelectorAll('div[id^=csc]') : (function(){ | |
| var divs = (document.getElementById('commonAncestorElementIdGoesHere') || document).getElementsByTagName('div'), | |
| i = divs.length, | |
| result = [], | |
| div; | |
| while (i--){ | |
| div = divs[i]; | |
| if (div.id && div.id.match(/^csc/)){ | |
| result.push(div); |
This file contains hidden or 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 x = '/x/'; | |
| /x/==x |