Skip to content

Instantly share code, notes, and snippets.

@machristie
Created July 9, 2011 17:38
Show Gist options
  • Save machristie/1073778 to your computer and use it in GitHub Desktop.
Save machristie/1073778 to your computer and use it in GitHub Desktop.
Update the tweet text of the iframe Tweet Button
function updateTweetButtonText(message) {
var tweetButton = document.getElementById('tweet-button');
tweetButton.src = tweetButton.src.replace(/&text=[^&]+/, "&text=" + encodeURIComponent(message) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment