The first step is to create html page and add links to the javascript files and css dependencies to your project. The jqxLoader widget requires the following files:
$("#jqxLoader").jqxLoader('open');To set a property(option), you need to pass the property name and value(s) in the jqxLoader's constructor.
$("#jqxLoader").jqxLoader({ height: "150px" });To get a property(option), you need to pass the property name to the jqxLoader's constructor.
var height = $("#jqxLoader").jqxLoader("height");To bind to an event of a UI widget, you can use basic jQuery syntax. The example code below demonstrates how to bind to the "create" event of jqxLoader.
// bind to create event. $('#jqxLoader').on('create', function () { alert("jqxLoader is created!"); });