Skip to content
Advertisement

Using twitter widgets with html anchor tag rendered by javascript

I am using the code from the twitter for websites guide. I have put the JavaScript code snippet from step 4 into a function I have called tWidgit.

This code converts the text hyperlink into a Tweet button. It is working when I hard-code Twitters HTML but it is not working for the link that is generated by my JavaScript. I did set the class on line 36:

tw.class = “twitter-share-button”;

The JavaScript sets up a listener for the details elements and creates a hyperlink based on the data attribute from each summary item on click. I am trying to make a tweet button that allows the user to tweet the URL. I need to use their JavaScript. Here is my codepen.

Please also see my code attached:

JavaScript
JavaScript
JavaScript

Please note final code using twttr.widgets.createShareButton is here

Advertisement

Answer

After creating the anchor tag, you need to reload the twitter widget with twttr.widgets.load();. Check the below code:

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement