The first step is to create html page and add links to the javascript files and css dependencies to your project. The jqxTabs widget requires the following files:
$("#jqxTabs").jqxTabs(‘select’, 1);
To get the result of a function(method) call, you need to pass the method name in
the jqxTabs’s constructor and parameters(if any).
$("#jqxTabs").jqxTabs(‘getTitleAt’, 0 );
To set a property(option), you need to pass the property name and value(s) in the
jqxTabs's constructor.
$("#jqxTabs").jqxTabs({ collapsible: true });
To get a property(option), you need to pass the property name to the jqxTabs's constructor.
var collapsible = $("#jqxTabs").jqxTabs('collapsible');
To bind to an event of a UI widget, you can use basic jQuery syntax. Let’s suppose
that you want to get the selected item when the user clicks. The example code below
demonstrates how to bind to the ‘select’ event of jqxTabs.
$('#jqxtabs').on('selected', function (event) {
var item = event.args.item;
var title = $('#jqxtabs').jqxTabs('getTitleAt', item);
alert(title);
});