I have html code in a 3rd party website:
<div class="info_texts">
<a href="down.php?action=details&id=111"
onclick="get_file(111); return false;"
title="TOO LONGER TEXT, TOO LONGER TEXT, TOO LONGER TEXT, TOO LONGER TEXT, TOO LONGER TEXT, TOO LONGER TEXT, TOO LONGER TEXT">
<nobr>TOO LONGER TEXT, TOO LONGER TEXT, TOO...</nobr>
</a>
</div>
Now I see truncated text (Short text...) without whole of text (Full text, without ...)
I wanna swap title=""
with <nobr></nobr>
with javacript (greasemonkey script)
In website have a lot of <div class="info_texts">
so should replace all of tags.
Thank you!
Here is an example code: