Skip to content

Instantly share code, notes, and snippets.

@hirokazumiyaji
Created October 23, 2015 08:16
Show Gist options
  • Save hirokazumiyaji/9b1b7b823b6b6d33bad8 to your computer and use it in GitHub Desktop.
Save hirokazumiyaji/9b1b7b823b6b6d33bad8 to your computer and use it in GitHub Desktop.
function quoteReply(tweetId) {
var tweetText = document.getElementById("#" + tweetId).innerText;
var textarea = document.getElementById("#form-textarea");
textarea.value = ">" + tweetText + "¥n";
textarea.forcus();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment