Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. <script>
  2. $.getJSON('/fetchTicker', function (data) {
  3. $.each(data.result, function () {
  4. $("#marqueecontent").append("<span"
  5. if (this['scoreChange'] >= 0){
  6. "style='color:#66FF13'>" + this['playerName']
  7. + " + " + this['scoreChange'] + " % " + "&nbsp;&#9650;&nbsp;";
  8. }else(this['scoreChange'] < 0){
  9. "style='color:#FF2020'>" + this['playerName']
  10. + this['scoreChange'] + " % " + "&nbsp;&#9660;&nbsp;";
  11. }
  12. "&#x2758;&nbsp;&nbsp;</span>"
  13.  
  14. );
  15. });
  16. });
  17. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement