bilgmuh adlı üyeden alıntı: mesajı görüntüle
örnek kodları ve varsa kullandığın pluginleri yazarsan yardımcı olurum
Kodlar bu şekilde hocam,

yapmak istediğim belirlediğim alanlarda sabit kalması.

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>jQuery UI Draggable - Default functionality</title>
  <link rel="stylesheet" href="//code.jquery.com/ui/1.11.1/themes/smoothness/jquery-ui.css">
  <script src="//code.jquery.com/jquery-1.10.2.js"></script>
  <script src="//code.jquery.com/ui/1.11.1/jquery-ui.js"></script>
  <link rel="stylesheet" href="/resources/demos/style.css">
  <style>
  #draggable {background:#ddd; width: 150px; height: 150px; padding: 0.5em; }
  #alan{width:800px; height:900px; border:1px solid #ddd; margin:0 auto;}
  </style>
  <script>
  $(function() {
    $( "#draggable" ).draggable({cursor:"move", containment:"#alan"});
	$("#draggable").resizable({animate:true, ghost:true});
  });
  </script>
</head>
<body>
 

 
 <div id="alan">
 <div id="draggable" class="ui-widget-content">
  <p>Drag me around</p>
</div>
 
 
 </div>
 
</body>
</html>