JavaScript Window

Set the maxWidth property of the jqxWindow. Author: http://jqwidgets.com

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>
<div id='jqxwindow'>
   <div></div>
    <div><img alt="Resize Map" width="32" height="32" 
    src="http://downloadicons.net/sites/default/files/resize-icon-977.png"  id="imgResizeMap"/></div>
</div>

CSS

.jqx-window-header, .jqx-widget-header {
        display:none !important;
    }

JavaScript

$("#jqxwindow").jqxWindow({
    height: 32,
     width: 32,
    theme: 'energyblue',
    maxWidth: 32,
    minWidth: 32,
     maxHeight: 32,
    minHeight: 32
});