(no title)
kiernan | 10 years ago
Kind of like if you turned off styles and used the inspect feature of your browser but with all it's mouse-over highlights and guidelines turned on at once.
kiernan | 10 years ago
Kind of like if you turned off styles and used the inspect feature of your browser but with all it's mouse-over highlights and guidelines turned on at once.
Hurtak|10 years ago
document.body.insertAdjacentHTML('afterbegin', '<style>{outline: 1px solid black}</style>')
both together:
javascript:[].slice.call(document.querySelectorAll('link,style,[style]')).forEach(function(e){e.style.cssText?e.style.cssText='':e.outerHTML=''});document.body.insertAdjacentHTML('afterbegin', '<style>{outline: 1px solid black}</style>');