Html Button
Bind to the click event by type: jqxButton. Author: http://jqwidgets.com
by musicreader
HTML
<link rel="stylesheet" href="http://jqwidgets.com/public/jqwidgets/styles/jqx.base.css">
<link rel="stylesheet" href="http://jqwidgets.com/public/jqwidgets/styles/jqx.energyblue.css">
<script src="http://jqwidgets.com/public/jqwidgets/jqx-all.js"></script>
<input type="button" value="Click me" id='jqxButton' />
JavaScript
$('#jqxButton').jqxButton({
theme: 'energyblue'
});
$('#jqxButton').on('click', function (ev) {
alert('You clicked me!'+ev.target.id);
});