Skip to content

Instantly share code, notes, and snippets.

@amdstorm
amdstorm / inline_manual_async.js
Created December 28, 2015 03:41
Load inline manual async
(function() {
var d = false;
var tk = document.createElement('script');
tk.src = 'https://inlinemanual.com/embed/player.js';
tk.type = 'text/javascript';
tk.async = 'true';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(tk, s);
})();
@tbrianjones
tbrianjones / free_email_provider_domains.txt
Last active May 29, 2024 09:23
A list of free email provider domains. Some of these are probably not around anymore. I've combined a dozen lists from around the web. Current "major providers" should all be in here as of the date this is created.
1033edge.com
11mail.com
123.com
123box.net
123india.com
123mail.cl
123qwe.co.uk
126.com
150ml.com
15meg4free.com
@mrconnerton
mrconnerton / gist:1979037
Last active December 4, 2018 15:13
node form in ctools modal drupal 7
<?php
/*
Make Sure you include:
ctools_include('modal');
ctools_modal_add_js();
On the pages you put your link.
*/
@jaydson
jaydson / gist:1780598
Created February 9, 2012 15:11
How to detect a click event on a cross domain iframe
var myConfObj = {
iframeMouseOver : false
}
window.addEventListener('blur',function(){
if(myConfObj.iframeMouseOver){
console.log('Wow! Iframe Click!');
}
});
document.getElementById('YOUR_CONTAINER_ID').addEventListener('mouseover',function(){