CSS Scaffolding Bookmarklet


/ Published in: JavaScript
Save to your folder(s)

Save as the target of your link.

Change http://assets.harkeydesign.net/css/diagnose.css to your own hosted version if you want guaranteed permanence.


Copy this code and paste it in your HTML
  1. javascript:function%20z(){var%20h=document.getElementsByTagName('head').item(0);var%20s=document.createElement('link');s.setAttribute('type','text/css');s.setAttribute('rel','stylesheet');s.setAttribute('href','http://assets.harkeydesign.net/css/diagnose.css');h.appendChild(s);}z();

Report this snippet


Comments


You need to login to view comments.