Link title: source versus Firebug inspection
|
|
Link title: source versus Firebug inspection Link title example from The Pirate Bay. Video > Movies - TPB
I was surprised to see that link title in the source code and title via firebug are different. source code
Firebug, etc code
Adblock plus shows the same appended title as firebug - the title plus (/tor/blahblah...) This test code... links = document.getElementById("content").getElementsByTagName("A");
for (var i=0; i < links.length; i++) {
links[i].title = "test";
}
... doesn't stop (/tor/blahblah...) from being appended onto the title.
1
2
|
