Advertisement
Guest User

Untitled

a guest
Aug 1st, 2015
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. $(".new-tweet-form button").click(function(e){
  2. e.preventDefault();
  3.  
  4. var tweet = $('.new-tweet-form textarea').val();
  5.  
  6. $(".timeline").prepend('<div class="panel panel-default"><div class="panel-heading"><div class="panel-title"> John Doe <div class="handle">@JohnDoeOfficial</div></div></h3></div><div class="panel-body">' + tweet +"</div></div>")
  7. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement