Skip to content

Instantly share code, notes, and snippets.

@waldothedeveloper
Created May 18, 2018 12:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save waldothedeveloper/531f5f0b7dfc3798f44e9bccc761d1c2 to your computer and use it in GitHub Desktop.
Save waldothedeveloper/531f5f0b7dfc3798f44e9bccc761d1c2 to your computer and use it in GitHub Desktop.
Creating a tweetQuote function to tweet a quote
$(document).ready(() => {
//Create a tweet function
function tweetQuote() {
window.open(`https://twitter.com/intent/tweet?text=${data.quoteText}`);
}
$("#tweet-icon").on("click", tweetQuote);
};//end of getRandomQuote
$("#quote-button").on("click", getRandomQuote);
});// end of document.ready
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment