This is a simple case where a window pops up with jquery and can be moved.
<! DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 transitional//en" "Http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd
<meta http-equiv= "Content-type" Content= "text/html; Charset=utf-8 "/>
<title> Untitled document </TITLE>
<script type=" Text/javascript "src=" js/ Jquery-1.6.4.min.js "></SCRIPT>
<script type=" Text/javascript "src=" js/ Jquery.easydrag.handler.beta2.js "></SCRIPT>
<script type=" Text/javascript ";
$ (document). Ready (function () {
$ ('. One '). Click (function () {
$ ('. Box '). Show ();
});
$ (' span '). Click (function () {
$ ('. Box '). Hide ();
});
$ ('. Box_all '). Easydrag ();
});
</script>
<style type= "Text/css";
*{padding:0; margin:0;}
body{font-size:12px; padding:100px;}
. box_all{float:left; padding:5px; background: #eee; position:absolute; top:30%; left:30%;}
. box{width:500px; border:1px solid #4c7ebd; display:none;}
. Box h1{padding-left:10px;font-size:14px; background: #87b0e1; color: #FFF; line-height:30px; height:30px;}
. Box span{float:right; padding-right:10px; cursor:pointer;}
. Box span a{display:block; height:30px; width:30px; Background:url (img/close.jpg) no-repeat; text-indent:-9999px;}
. Box span a:hover{background:url (img/close_hover.jpg) no-repeat;}
. Box p{padding:10px; height:400px; background: #FFF; border:3px solid #eee;}
. one{Display:block;}
</style>
<body>
<a href= "#" class= "one" >php network frontend </a><br/><br/>
<input type= "Submit" class= "one" value= "PHP network front end"/><br/><br/>
<input type= "text" class= "one" value= "PHP network front end"/><br/><br/>
<div class= "Box_all" >
<div class= "box" >
<p> This is content </p>
</div>
</div>
</body>
Window Move case