Skip to content

Instantly share code, notes, and snippets.

@OliDM
OliDM / Log
Created August 12, 2013 00:01
// Adds a `log` function to window object.
// log.js
// https://github.com/bgrins/devtools-snippets
// Adds a `log` function to window object.
// http://www.briangrinstead.com/blog/console-log-helper-function
(function() {
window.log = Function.prototype.bind.call(console.log, console);
})();
@OliDM
OliDM / Jquery
Created August 11, 2013 23:59
Add jQuery to any page that does not have it already.
// jquerify.js
// https://github.com/bgrins/devtools-snippets
// Add jQuery to any page that does not have it already.
(function () {
if ( !window.jQuery ) {
var s = document.createElement('script');
s.setAttribute('src', '//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js');
document.body.appendChild(s);