Tab() constructor
About the constructor
Example:
const myTab = new Tab('Hello World', 'https://hello.world/helloworld.png', 'hello-world', 'Hello World');Functions
Tab.buildDiv(inner) (Mandatory function)
Tab.buildDiv(inner) (Mandatory function)Use case
const myTab = new Tab('Hello World', 'https://hello.world/helloworld.png', 'hello-world', 'Hello World');
myTab.buildDiv(`
<h2>Hello World!</h2>
<p>Some Stuff!!!</p>
`)Last updated