The first step is to create html page and add links to the javascript files and css dependencies to your project. The jqxPasswordInput widget requires the following files:
$("#input").jqxPasswordInput('refresh');To get the input's value, you need to do the following:
var value = $("#input").val();To set a property(option), you need to pass the property name and value(s) in the jqxPasswordInput's constructor.
$("#input").jqxPasswordInput({ rtl: true });To get a property(option), you need to pass the property name to the jqxInput's constructor.
var rtl = $("#input").jqxPasswordInput('rtl');To bind to an event of a UI widget, you can use basic jQuery syntax. Let’s suppose that you want to know when the input value is changed.
// bind to 'change' event. $('#input').on('change', function (event) { });