I need to be able to move a div with my mouse and store the new pos of the div in database to remember the display. How can I do it?
|
feedback
|
|
I would highly recommend you look into jQuery UI and the draggable interaction. Basically, you'll want to add the code to your draggable div (assuming it has id="draggable"):
And, then put your necessary behavior in the stop event. More specifically, you'd do this:
As for the database storing, you could use an AJAX call in the above function, or you could store it in-page, such that some form-send or other action results in the positional information being passed to the server and stored inline with other data. I'd be careful with an AJAX call, since you may bomb your db with position data with every dragging on every browser. Depends on your app... | ||||
feedback
|
|
Here is a little jQuery function I just wrote to let you drag divs using only jQuery and not using jQuery UI.
The jQuery function even prevents the div from going out of the bounds. Basically you attach it to a div that you destine to be the drag activator (say the title bar for instance). Invoking it is as simple as this:
So #titleBar would be the id of your titlebar div and #whatToDrag would be the id of what you wanted to drag. I apologize for the messy code, I just hacked it up and thought it would give you an alternative to jQuery UI, while still making it easy to implement. | |||
|
feedback
|