More Details On Received Messages

Don Von Alpha Dom
by Don Von Alpha Dom · 2 posts
12 years ago in Messages Panel
Posted 12 years ago · Author
This code adds more info / data about the messages you receive.

Code
<script type="text/javascript">
/* by productions published on http://imvu.at/ic27 under CC-Share-alike license */
var copiedfrom='www.imvucodes.net';
x=document.getElementById('messages_panel_body');
x2=x.getElementsByTagName('span');
for(var i=0;i<x2.length;i++) {
   if(x2[i].className=='msgAvNam') {
      y=x2[i].getElementsByTagName('a')[0].title;
      y2=x2[i].innerHTML.split('>')[2].split('<')[0];
      y3='<a href="http://avatars.imvu.com/'+y2+'" title="Visit '+y2+"'"+'s Page!"><strong>'+y2+'</strong></a>';
      x2[i].innerHTML=y3+'<br /><span style="font-weight:normal;font-size:10px">'+y+'</span>';
   }
}
</script>
Posted 12 years ago
What kind of data does this code add?

Edit: Found out the code shows the date and time of messages.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Sign in

Already have an account? Sign in here

SIGN IN NOW

Create an account

Sign up for a new account in our community. It's easy!

REGISTER A NEW ACCOUNT