Skip to content

Instantly share code, notes, and snippets.

@andydavies
Created December 22, 2012 13:38
Show Gist options
  • Save andydavies/4358912 to your computer and use it in GitHub Desktop.
Save andydavies/4358912 to your computer and use it in GitHub Desktop.
View-Source bookmarklet for webkit (only ?) browsers works on iOS Safari e.g. iPad too Based on @weisjohn's bookmarklet with background colour forced to white (http://weisjohn.github.com/widgets/viewsource_bookmarklet/)
javascript:(function(){i=document.createElement('iframe');i.setAttribute('viewsource');i.setAttribute('width', '100%');i.src=location.href;document.body.insertBefore(i, document.body.childNodes[0]);i.style.backgroundColor='#fff';})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment