SABU
SABU

Reputation: 3697

limit dragging property of a div inside inside another div?

please help me to limit dragging property of a div inside inside another div example http://galtech.org/testing/drag.php i need dragg the red div only inside the blue div pls help me i am using jQuery draggble

<script>
  $(document).ready(function() {
    $("#draggable").draggable();
  });
  </script>

Upvotes: 0

Views: 1076

Answers (1)

user407283
user407283

Reputation:

<script>
  $(document).ready(function() {
    $("#draggable").draggable({ containment: 'parent' });
  });
  </script>

suppose blue div is parent

docs here

Upvotes: 2

Related Questions