Html Button

Bind to the click event by type: jqxButton. Author: http://jqwidgets.com

by jqwidgets

HTML

<link rel="stylesheet" href="https://jqwidgets.com/public/jqwidgets/styles/jqx.base.css">
<script src="https://jqwidgets.com/public/jqwidgets/jqx-all.js"></script>
<link rel="stylesheet" href="https://jqwidgets.com/public/jqwidgets/styles/jqx.energyblue.css">
<input type="button" value="Click me" id='jqxButton' />

JavaScript

$('#jqxButton').jqxButton({
    theme: 'energyblue'
});
$('#jqxButton').on('click', function () {
    alert('You clicked me!')
});