Skip to content Skip to sidebar Skip to footer

Save Position Of Jquery Draggable Divs Using Php

There are a lot of solutions out there as to how to save the position of draggable DIVs but I haven't found any that will help with using a While loop in php. I have a database of

Solution 1:

You can use the stop event of draggable to get noticed when an element has reached a new position. Then you just have to get the offset as described in the docs.

Assuming you have a setup like that:

<divid="set"><divdata-need="1"></div><divdata-need="2"></div><divdata-need="3"></div><divdata-need="4"></div><divdata-need="5"></div></div>

I've used a data attribute to store the id of the "need", you can later on use that id to store the position of the "need" in the database.

Now as mentioned before, use the stop event to send an ajax call to the server with the id of the need and the x and y postion of it. Be aware hat this is the position of the screen so if you have different screen sizes you should probably use positions relative to a parent container with a desired position.

$(function() {
  $( "#set div" ).draggable({ 
    stack: "#set div",
      stop: function(event, ui) {
          var pos_x = ui.offset.left;
          var pos_y = ui.offset.top;
          var need = ui.helper.data("need");

          //Do the ajax call to the server
          $.ajax({
              type: "POST",
              url: "your_php_script.php",
              data: { x: pos_x, y: pos_y, need_id: need}
            }).done(function( msg ) {
              alert( "Data Saved: " + msg );
            }); 
      }
  });
});

This way every time a draggable element reaches a new positions e request will be sent to your_php_script.php. In that script you then only have to grab the post parameters and store them in the database.

There is a working fiddle, of course the ajax request is not working but you can see whats going on in the console.

Post a Comment for "Save Position Of Jquery Draggable Divs Using Php"