I have the following problem, I found a plugin, jQuery Window , which opens windows with button to minimize, maximize, etc., and opens pages within that window, but I'm not getting it to work.
I would like to use example number 6, method 2 on my system, if anyone can give me a light on how I make a wheel like the one on the site would be great.
Remembering that I include in my HTML all necessary libraries like jQuery, jQuery UI and Plugin.
Code of the button I left to call the function and open the window when clicked
<input type='button' value='Click Here to Create Window' onclick='createWindowWithRedirectChecking2();'>
My code - Plugin
function createWindowWithRedirectChecking2(){
$.window({
title: "create window with redirect checking",
url: "http://www.myspace.com",
iframeRedirectCheckMsg: "the window is going to redirect to {url}!!\r\nPlease select 'cancel' to stay here."
});
}
Imports
<script src="libs/JQuery/jquery-1.11.0.min.js"></script>
<script src="libs/Bootstrap/js/bootstrap.min.js"></script>
<script src="libs/jquery-ui-1.10.4/js/jquery-ui-1.10.4.js"></script>
<script src="libs/jquery-window-5.03/jquery.window.js"></script>
<link href="libs/Bootstrap/css/bootstrap.min.css" rel="stylesheet" media="screen">
<link id="jquery_ui_theme_loader" type="text/css" href="libs/jquery-ui-1.10.4/css/black-tie/jquery-ui.css" rel="stylesheet" />
<link href="libs/jquery-window-5.03/css/jquery.window.css" rel="stylesheet" media="screen">
Code in JSFiddle: JSFiddler