jQuery Window Getting Started

The Window widget allows you to create a windw on your web page.
In order to properly render it on the page, you need to:
1. Include references to all required scripts. Make sure you include the CSS file for your preferred theme.
2. Add a div element for which to initialize the Window functionality.
3. Initialize the widget.

<!DOCTYPE html>
<html>
<head>
<title>Shield UI Window</title>
<meta charset="utf-8" />


<link rel="stylesheet" type="text/css" href="css/light/all.min.css" />
<script src="js/jquery-1.10.2.min.js" type="text/javascript"></script>
<script src="js/shieldui-all.min.js" type="text/javascript"></script>

</head>
<body>

<div id="window" style="display:none;">
Hello from ShieldUI Window!
</div>

<script type="text/javascript">
    jQuery(function ($) {
        $('#window').shieldWindow({
            title: "Window Title"
        });
    });
</script>

</body>
</html>

To see an example of the control in action, along with all the required code, please refer to the following example.