Hello Brent,
Please, find below an example which shows how to move window in browser window:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en">
<head>
<title></title>
<link rel="stylesheet" href="../../jqwidgets/styles/jqx.base.css" type="text/css" />
<link rel="stylesheet" href="../../jqwidgets/styles/jqx.summer.css" type="text/css" />
<script type="text/javascript" src="../../scripts/jquery-1.11.1.min.js"></script>
<script type="text/javascript" src="../../jqwidgets/jqxcore.js"></script>
<script type="text/javascript" src="../../jqwidgets/jqxwindow.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$("#jqxwindowTop").jqxWindow({ height: 90, width: 150, theme: 'summer' });
$(".windowTop").css("left", "");
$("#jqxwindowBottom").jqxWindow({ height: 90, width: 150, theme: 'summer' });
$(".windowBottom").css({
"top": "",
"left": ""
});
});
</script>
<style>
.windowTop {
top: 0px !important;
right: 40px !important;
}
.windowBottom {
bottom: 0px !important;
right: 40px !important;
}
</style>
</head>
<body>
<div id='content'>
<div id='jqxwindowTop' class="windowTop">
<div>Header</div>
<div>Content</div>
</div>
<div id='jqxwindowBottom' class="windowBottom">
<div>Header</div>
<div>Content</div>
</div>
</div>
</body>
</html>
Best Regards,
Nadezhda
jQWidgets team
http://www.jqwidgets.com/