View Full Version : friend list..


hunnyfine
08-01-2004, 02:48 PM
how do you change their usernames to their actual names on your friend list? tell me if you dont understand that lol.
thanks,
cyndi :cloud:

JiNgLeBeLLz77
08-01-2004, 03:10 PM
try this script =]

<script language="javascript">
<!--
var links = document.getElementsByTagName ('a');
for (var l = 0; l < links.length; l++) {
str = links[l].innerHTML;
if (str.match (/\d+:\d+ (am|pm)/i)) links[l]
else if (str.match (/hunnyfine/i)) links[l].innerHTML = str.replace (/hunnyfine/i, "yournamehere");
else if (str.match (/eprop/i)) links[l].innerHTML = str.replace (/eprop/i, "cent");
else if (str.match (/comments/i)) links[l].innerHTML = str.replace (/comments/i, "dollars");
else if (str.match (/comment/i)) links[l].innerHTML = str.replace (/comment/i, "dollar");
else if (str.match (/subscribe!/i)) links[l].innerHTML = str.replace (/subscribe!/i, "add me");
else if (str.match (/sign out/i)) links[l].innerHTML = str.replace (/sign out/i, "log out");
}//-->
</script>