JSFiddle - React, Tailwind, and code Playground
by muffls
HTML
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
</head>
<body>
<input type="submit" title="nothing" /><br />
<span title="something">hello</span>
</body>
</html>
JavaScript
alert("helo");
$('*[title]').each(function() {
alert(this.title);
}