Skip to content

Instantly share code, notes, and snippets.

@jeromeetienne
Created June 23, 2011 10:27
Show Gist options
  • Save jeromeetienne/1042314 to your computer and use it in GitHub Desktop.
Save jeromeetienne/1042314 to your computer and use it in GitHub Desktop.
jsconsoleInsert
;(function(exports){
/**
* Insert http://jsconsole.org in the page
*/
exports.jsconsoleInsert = function(id){
if( !!navigator.userAgent.match(/iPod/) || !!navigator.userAgent.match(/iPad/) ){
document.write(unescape("%3Cscript src='http://jsconsole.com/remote.js?"+id+"' type='text/javascript'%3E%3C/script%3E"));
}
}
})(this);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment