Difference between revisions of "Title Attribute Favlet"
Jump to navigation
Jump to search
Line 2: | Line 2: | ||
<html> | <html> | ||
− | <a href=”javascript:(function(){var%20element=document.createElement(‘script’);element.setAttribute(‘src’,'Title | + | <a href=”javascript:(function(){var%20element=document.createElement(‘script’);element.setAttribute(‘src’,'Title%20attribute.js’);document.body.appendChild(element);})();”> Title Attribute Favlet </a> |
</html> | </html> | ||
Revision as of 02:55, 5 February 2014
This Favlet displays the text of all title attributes.
Sample code
javascript:(function(){
var el = document.querySelectorAll('[title]');
var str;
var headers=[];
var sentinel;
if (el.length>0) {
for (var i=0; i<el.length; i++) {
s = document.createElement('Span');
t = document.createTextNode(" Title="+el.item(i).title +" ");
s.appendChild(t);
s.style.backgroundColor = 'antiqueWhite';
s.style.color = 'black';
el.item(i).parentNode.insertBefore(s,el.item(i));
}
}
else {
alert('no elements with titles');
}
})();