Difference between revisions of "Title Attribute Favlet"
Jump to navigation
Jump to search
Line 30: | Line 30: | ||
</pre> | </pre> | ||
</code> | </code> | ||
− | [[ | + | [[Category:Favlet]] |
Revision as of 02:59, 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');
}
})();