jQuery Response

Set the document property of the jqxResponse. Author: http://jqwidgets.com

by jqwidgets

HTML

<script src="https://jqwidgets.com/public/jqwidgets/jqx-all.js"></script>
<div id="document"></div>

JavaScript

var response = new $.jqx.response();
var document = response.document;
var width = document.width;
var height = document.height;
    $("#document").html("document: " + response.document.width + ", Height: " + response.document.height);