BoldSignEffortlessly integrate e-signatures into your app with the BoldSign API. Create a sandbox account!
<code>
<ej-tab id= "tab"
<ul>
<li><a rel='nofollow' href="#twitter">{{header1}}</a></li>
</ul>
</ej-tab>
</code> |
<code>
export class AppComponent {
header1:string;
constructor() {
this.header1="Twitter";
}
nhbtnclick(){
// Change the header name
this.header1= "Instagram";
}
}
</code> |
tabObj.addItem(tabId, tabName, tabCount+1, null, tabId); |
<code>
tabCreate(){
var tabObj = jQuery("#tab").ejTab("instance");
tabObj.addItem("#new", "New Item", 3, "myClass", "newItem");
}
</code> |
<code>
nhbtnclick(){
// Using Tab Instance
var tabObj = jQuery("#tab").ejTab("instance");
tabObj.items.find("a[rel='nofollow' href='#new']").html("Header");
// using rel='nofollow' href
jQuery("a[rel='nofollow' href='#new']").html("New header");
this.header1= "Instagram";
}
</code> |