Advertisement
Guest User

Untitled

a guest
Dec 21st, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.57 KB | None | 0 0
  1. $('.msg_history').append($('<div class="' + class1 + '"></div>').append($('<div class="' + class2 + '"></div>').append($('<div></div>')
  2.                 .append($('<a href="' + msg + '" target="_blank"></a>')
  3.                     .append($('<img src="https://i.ytimg.com/vi/' + id + '/mqdefault.jpg" width="160ox" height="90px">')))
  4.                 .append($('<div></div>')
  5.                     .append($('<p></p>').text(title))
  6.                     .append($('<i class="material-icons">play_arrow</i>').on('click', () => {
  7.                         sendMessage('setID', {
  8.                             'id': id,
  9.                             'time': time
  10.                         });
  11.                         doVideoChange(id, time);
  12.                     }))
  13.                 ))));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement