JSFiddle - React, Tailwind, and code Playground
by mrmartineau
HTML
<h1>Title</h1>
<h2>Subheading</h2>
<p>Paragraph of text...</p>
CSS
ol{
list-style: decimal inside none;
}
JavaScript
$(function(){
$('body *').each(function(){
// append a 'ol' to body in order to output all tag names
if(!$(this).parents('body').find('ol').length){
$('body').append('<ol/>');
}
// output the name of the tag (list item)
$('ol').append('<li>' + this.tagName.toLowerCase() + '</li>');
});
});