Created
June 18, 2015 15:53
-
-
Save sylvaincombes/344b3102d8308429a274 to your computer and use it in GitHub Desktop.
Visual Debug of titles in a html page (copy / paste code in the js console on a site with jquery)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(':header').each(function (index) { | |
$(this).css('border', '2px solid red') | |
.css('background', '#393939') | |
.css('color', 'white') | |
.css('padding', '10px') | |
.append(' [' + $(this).get(0).tagName + ']'); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment