The jQuery UI Draggable plugin makes selected elements draggable by mouse

learn more… | top users | synonyms

0
votes
1answer
13 views

removing clone and deleting draggable in jQuery's drag and drop

I am still rather new to jQuery and had a question. I am trying to implement a "drag and drop" method where the user can drag items in one list and drop them in "buckets" in another. I seem to have ...
0
votes
0answers
9 views

jquery selected draggable element drop it to multiple ul list

I have two div as draggable and droppable. I need to drag single element having number with it. If I drag element having text = 2 then that element should be cloned into two list as in one as I am ...
0
votes
1answer
20 views

jQuery draggable working in jsfiddle but not on webserver

I have a draggable div with a nested resizable div and then nested inside this I have a div that is editable with nicedit. it all works wonderfully within jsfiddle but when I run it on my webserver ...
-1
votes
0answers
13 views

JQuery UI draggable droppable bug

$(function () { $(".draggable").draggable({ snap: ".snap", revert: true }); }); $(".snap").droppable({ drop: function (event, ui) { var drag = ui.draggable; ...
0
votes
0answers
14 views

JQuery UI draggable not working properly

$(function () { $(".draggable").draggable()( { snap: ".snap", revert: true }); $(".droppable").droppable({ over: function() { ...
2
votes
0answers
33 views

JQuery UI draggable bug

$(function () { $(".draggable").draggable({ snap: ".snap", revert: true }); }); $(".snap").droppable({ drop: function (event, ui) { var drag = ui.draggable; ...
0
votes
0answers
29 views

Cannot get JQuery Draggable to work (Fixed)

I'm using the same code from the demo website but for whatever reason I cannot get it to work. Here is the code on my master page: <link ...
1
vote
1answer
19 views

jQuery-UI Draggables in IE8 fail after first `return false;`

I need to set up a specific area to allow dragging. At the moment, I'm setting it up as follows: dragthis.draggable({ drag: function(event, ui) { if (ui.position.left < 0) { ...
0
votes
0answers
13 views

Move item from current place to when another item is dropped in its place

A small question hopefully with a simple answer, I am using jQuery draggable and droppable to place items into a Container. Using the below code for the drop. $("#container").droppable({ ...
0
votes
0answers
20 views

jQuery drag div into another div and copy HTML+Style

How can have it so when I drag a divider into another divider, the containing divider appends the HTML and Style of the draggable divider? I am trying to build a canvas to drag elements onto and then ...
0
votes
1answer
53 views

JQuery UI Drag & Drop And Align

Here is my draggable and droppable implementation: http://jsfiddle.net/A26ww/ I have groups of playlists and I need to be able to drag a playlist from one group to another. I can do that however I ...
0
votes
1answer
12 views

jQuery Draggable Stop: function to stopPropagation of elements

I am trying to get it so when the draggable element has stopped the two elements that I assign stopPropagation. Code I have so far, with no errors, yet not working. $( "#pop_up" ).draggable({ ...
0
votes
0answers
19 views

stopPropagation() not working on draggable div

I have a span nested within a jQuery resizable div, which is nested within a jQuery draggable div. I have a toggle button which makes the span into a nicedit textarea for editing. when the button is ...
0
votes
0answers
22 views

Best solution for droppable/draggable element without affecting its siblings?

Basically I've got a structure like this: <div id="divGrid"> <div class="divGrid">&nbsp;</div> <div class="divGrid">&nbsp;</div> ... </div> ...
0
votes
1answer
48 views

jQuery Tools overlay apple effect draggable with background image

I have a jQuery Tools overlay with apple effect. I want to make the overlay draggable I tried using jQuery $( ".overlay" ).draggable({ handle: "h3" }); this worked but the background image did not ...
0
votes
0answers
22 views

From drag and drop using jQueryUI to drag and drop using HTML5

Currentl I am using drag and drop with jQueryUI. I have a div that can be dragged only in its parent. This is the code: <script> $('.children').draggable({ containment: "parent" }); ...
0
votes
1answer
56 views

Restricting jQuery-ui Draggable to drag up only, within a given area

I've got a, fixed position, image that I'm animating with CSS and moving down the edge of the screen when the user scrolls. - Works great. When the image gets to the bottom of the screen the user can ...
1
vote
3answers
52 views

jQuery draggable doesn't apply containment on creation

I am using jQuery draggable plugin and faced with the next problem. After draggable creation, plugin doesn't apply specified containment option. Here you can find an example: ...
0
votes
0answers
9 views

Detect Draggable Handle on Droppable Element in jQuery

I've defined a draggable element (menu) and its handle, which is nested (menuHandle). There's a droppable element elsewhere. Apparently, setting the droppable's accept property to menuHandle does not ...
0
votes
4answers
39 views

jQuery .on('click') does not work with jQuery UI draggable

I have a question regarding jQuery. I am really new with jQuery, or even javascript for that matter, so please bear with me. I am using jQuery UI draggable on some divs in my app. The problem is, ...
0
votes
1answer
39 views

Does jqGrid support builtin dynamic drag-n-drop columns grouping header?

I'm wondering if the latest jqGrid version contains built-in dynamic drag-n-drop column grouping header. Or do i have to write one from scratch? I saw few postings about it but they're over 1 years ...
0
votes
3answers
27 views

ui.draggable to show if confirmation is canceled.

I made a quick list, where each item can be moved to a trash can. I set it so once you track it onto the trash, it hides. If you hit ok to the "confirm", then it is fully removed with remove(). The ...
0
votes
1answer
38 views

Undo action if “cancel” is pressed in response to confirm()

I made a quick list, which you can drag to a trash can (which removes it). Everything works when you press "ok", and the item gets removed as it is told to. Although if you press "cancel" to the ...
0
votes
0answers
19 views

Resizable and draggable jQuery overflow

Hi all I have a site where I upload an image in Ajax in a div, this image mus be resizable and draggable. The problem is if I resize it, works, if I drag it seems that there is an overflow:hidden ...
1
vote
1answer
55 views

Move div off screen containing draggables after drop and keep dragged elements positions

I'm using JQuery drag and drop. I want to move the div containing the draggable elements ('elements') off screen, and keep the draggable elements positioned on their corresponding slots after being ...
0
votes
0answers
12 views

Dragging rows to Root Level using treetTable and jQuery UI

I've been using Ludo's great jquery plugin treetable, but have reached a limitation in their advanced example I can't figure out. Basically, in the last example provided here -- ...
0
votes
1answer
19 views

set draggable in mousedown handler

Perhaps it's by design, but I want the handle to be draggable rightaway, not after the first mouseup as it currently happens. <html> <head> <link ...
0
votes
1answer
40 views

jquery ui: drag and drop - mouse selection incorrect

I'm working on a drag and drop navigation setup for my client. I have the drag and drop working (in a basic form) however when you click on one of the list items to be dragged the actual droppable ...
1
vote
1answer
37 views

Can I display:none part of a jQuery UI draggable and still keep the cursor in place somehow?

I have a number of draggables with images in them that I want to drop into folders. To conserve space (and make more draggables visible on the screen at one time), I'm hiding the images with CSS ...
1
vote
1answer
56 views

Navigation using jquery ui - drag and droppable: square into middle then execute

I am trying to replicate the functionality found at the following: http://carbonstudio.co.uk using jquery drag and drop. Below you will find where I am upto at the moment. The two issues I am ...
0
votes
0answers
9 views

JQuery UI Object Ignores Z-Index

On my page there is a form which when submitted appends a draggable object onto the page. Ideally the object should have a z-index lower than that of the form so the form can be used again. I have ...
1
vote
1answer
33 views

Jquery drag and drop - set clickable region in draggable on drop

This is a follow up question posted at Jquery drag and drop - click event registers on drop I'm using jquery drag and drop. The draggable elements contain two nested divs floated left and right. ...
2
votes
2answers
29 views

Jquery drag and drop - click event registers on drop

I'm using jquery drag and drop. The draggable element is a div with two nested divs floated left and right. On drop, the left nested div (which contains the text), gets enabled for a click event: ...
0
votes
2answers
23 views

Image is draggable but not resizable? JQuery

As I saw on another questions I tried wrapping the img on a div and make the div draggable and the img resizable, but it is not working? $('#container').on('dblclick', 'img', function(){ ...
0
votes
1answer
45 views

Change border color of nested div when parent div has class added after drop

I'm using jquery drag and drop. When the draggable element is dropped onto the correct slot, the draggable div gets a class added ('correct') to change background color. Now, I want to change the ...
2
votes
2answers
102 views

JQuery…adjust grid offset mid drag

I have a draggable element in JQuery where if you drag it over a certain region, it has a grid, and if you drag it over another region, it doesn't have a grid (or the grid is set to [1,1], same ...
0
votes
0answers
33 views

Scroll according to mouse position doesn't work inside of a draggable and resizable child's div

I've a script which makes scrolling in all directions according to mouse position inside a div work. This is the script file which i named scrollindiv.js : window.cancelRequestAnimFrame = ( ...
0
votes
3answers
44 views

jqueryui resizeable and draggable element is covered

I have two elements which are draggable and resizeable. They are aline horizontally. My problem is when I attempted to resize the first element at the top, the second element position below will ...
1
vote
2answers
40 views

jquery remove from droppable when dragged out

I have implemented jQuery's draggable and droppable based on the example shopping cart demo. I would like to be able to remove the <li> from the droppable when you drag it out of the droppable. ...
1
vote
2answers
47 views

How do I make a JQuery Draggable with a smaller clone?

I have a large element that is displayed on the screen that I would like to be able to drop on a smaller drop target. Therefore, I want to decrease the size of the draggable clone to match the size of ...
0
votes
0answers
36 views

Confirm Box Alternative in jQuery droppable

Currently I have a javascript confirm box in my jquery droppable function. Basically I have overlapping droppables and if you drop an item into a droppable, it checks to see if any of the overlapping ...
0
votes
1answer
80 views

Position rotated div

I'm trying to rotate and resize elements ('furniture' in my roomplanner). Every element (image) has a div wrapped. This div is draggable, the image can be rotated. There is a second div wrapped around ...
0
votes
1answer
32 views

jQuery draggable, remove if not dropped on droppable

I want a draggable to be removed in the stop event if it is an invalid drop. Could someone tell how to know in the stop event whether it is an invalid drop or not so that the element can be removed? ...
1
vote
1answer
55 views

How to set snap to multiple elements

I have set my snap element of the draggable like so: $('#id_num_'+id_num).draggable({snap:'.time_column', snapMode:'inner'}) How do I set up my draggable element to snap to two different elements ...
0
votes
1answer
30 views

Set DIV to draggable only after animation

Again running into problems: I would like my #deck DIV to be draggable AFTER it animates, and of course not at all before. I understand now the code does not follow the instructions order as my DIV ...
1
vote
0answers
35 views

Wrong position in draggable elements when previous elems get higher on hover

I have this situation: I have draggables that are droppable to a special places. I've prepared a fiddle with the feature I've described: http://jsfiddle.net/8MGmb/ $('.widget').draggable({ ...
0
votes
0answers
81 views

jQuery UI: Nested Connected Sortable

I'm using jQuery 1.9.1 and jQuery UI 1.10.2 to create a nested sortable/draggable/droppable environment. It consists of a number of gates, containing a number of nested categories, each containing a ...
0
votes
0answers
19 views

How to use Flexslider with UI Sortable?

What I want to do is to be able to interchange position between the slides and for instance, if I want to change the position of a slide with other that is in the 'next page' of flexslider, then be ...
0
votes
1answer
75 views

jquery plugin to move a table row from one table to another table

Does anyone know a jquery plugin in which I can move a table row from one table to another table? I know sortable with ConnectedLists, but I don't want no dragging, just moving the object with a ...
0
votes
1answer
68 views

Dynamically added draggable object not working the first time

I am adding the draggable functionality to an element on a particular user event(hold event). Drag functionality is not working the first time. Hammer(element).on("hold",function(event){ ...

1 2 3 4 5 15