twttr.widgets.createFollowButton function. Pass X username, target parent element, and any custom options.
The code snippets on this page assume widgets.js has successfully loaded on your page. Include an asynchronous script loader on your page while initializing window.twttr as described in our JavaScript loader documentation. All JavaScript code depending on widgets.js should execute on or after twttr.ready.
Arguments
| Parameter | Description | Example value |
|---|---|---|
username | A X username | 'XDevelopers' |
targetEl | DOM node of the desired parent element | document.getElementById('container') |
options | Override default widget options | { size: 'large' } |
Example
An element with a DOM ID ofcontainer exists on the page.
container.
Promises
Thetwttr.widgets.createFollowButton function returns a Promise. You can execute code after a widget has been inserted onto your page by passing a callback to the resulting promise’s then function.