Advertisement
errur

Untitled

Mar 13th, 2013
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     function AddMess(ent)
  2.     {
  3.         while (ent.message.indexOf("\n") > -1)
  4.             ent.message = ent.message.replace("\n", "<br />");
  5.            
  6.         //$("#chat").prepend("<div class=\"userfeedpost\" style=\"display:none; background-color:#"+ent.color+";\"><div class=\"ufinf\"><div class=\"ufname\"><a href=\""+ent.url+"\" style=\"color:#"+ent.color+";\">"+ent.name+"</a></div><div class=\"ufavatar\"><div style=\"position: absolute; top: -15px; left: -9px;\"><img src=\"images/partyhat_tiny.png\"></div><a href=\""+ent.url+"\"><img src=\""+ent.avatar+"\"></a></div></div><div class=\"ufmes\">"+ent.message+"</div></div>");
  7.         $("#chat").prepend("<div class=\"userfeedpost\" style=\"display:none; background-color:#"+ent.color+";\"><div class=\"ufinf\"><div class=\"ufname\"><a href=\""+ent.url+"\" style=\"color:#"+ent.color+";\">"+ent.name+"</a></div><div class=\"ufavatar\"><a href=\""+ent.url+"\"><img src=\""+ent.avatar+"\"></a></div></div><div class=\"ufmes\">"+ent.message+"</div></div>");
  8.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement