Empty jqwidgets

Empty project with attached libraries

by Alexey Sharifullin

HTML

<script src="http://jqwidgets.com/public/jqwidgets/jqx-all.js"></script>
<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">
<div id='jqxCalendar'></div>

JavaScript

$("#jqxCalendar").jqxCalendar({
    width: '200px',
    height: '200px',
    theme: 'energyblue'
});
$('#jqxCalendar').on('viewChange', function () {
    alert("You changed the view")
});