The droppable tag has no wiki summary.
0
votes
0answers
30 views
Temporarily reversing preventDefault
Is there a way to temporarily disable preventDefault().
I have two containers:
<section class="container1">
<div id="product">
<img src="9.jpg"></img>
<p>Drag ...
0
votes
0answers
4 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
1answer
33 views
jquery Uncaught TypeError: Cannot read property 'options' of undefined (edited)
Hello I made a function for a simple drag and drop quiz. Everything works fine except for internet explorer ofcourse. In chrome console I get this error: Uncaught TypeError: Cannot read property ...
0
votes
0answers
14 views
How do i use REVERT in JQuery?
Here is the link to the code: http://jsfiddle.net/73Un5/3/
As you can see, my draggables "header", "content", and "footer" can snap to any box. I need to use revert so that "header" will only snap to ...
0
votes
0answers
17 views
Droppable inside iframe with scrollable div
When you have a draggable outside an iFrame and a droppable inside an iFrame, when using the iframeFix option it works. But when you introduce an scrollable div around the iframe the coordinates of ...
0
votes
0answers
10 views
how to retrieve from elements from j.ui into an array
Im trying to: http://jsfiddle.net/LdeGC/2/
whenever the target is filled out I would like to create an array containing specifics of the items; ie--->
<div class="target">
<div ...
0
votes
0answers
22 views
JQuery: Dragged item is getting hidden after drop into another item with resizable option
I have 2 DIV tags, one is for draggable and other is for droppable. The drag and drop is working fine. But if i override resizable method for droppable element, then the dragged item is getting ...
1
vote
1answer
23 views
calling jquery replace content does not works when inside of function
so Im trying to: http://jsfiddle.net/LdeGC/1/
if ($('.ui-droppable').find('span.closer').length == $('.ui-droppable').length) {
alert('Listo ahora puedes simularlo');
...
0
votes
1answer
16 views
execute command when droppable target is filled with item
I'm trying to: http://jsfiddle.net/2phuW/12/
if ( //if target is filled with items) {
//dosomething
}
But i cant get the logic to work out any would be appreciated!
0
votes
1answer
24 views
jquery ui droppable fires all events on pageload
I have two droppable and two draggable elements
On doc ready all the droppable events fire.
After which when dragging an element over the droppable element no droppable events fire
The draggable ...
0
votes
1answer
22 views
Using JQuery to let the user drag and drop text into a specific DIV
So, basically I'm trying to use the draggable and droppable functions to create this. The javascript for it is like this:
$(init);
function init() {
$('#HeaderDrag').draggable({
...
0
votes
0answers
39 views
dropping an element only into the droppable that is in front
I have some droppable areas, which are also draggable. It can happen that two or more droppable areas will get behind each other. Is there a way to drop a draggable item only into the area that is in ...
1
vote
1answer
30 views
Remove a dragged element and reset cursor with jQuery
I have a problem using drag and drop with jQuery. Here's a very simple fiddle that shows what I mean (http://jsfiddle.net/Znt44/1/):
$('#drop').droppable({
drop: function (e, ui) {
...
0
votes
1answer
22 views
JQuery droppable: get the dragging element properties (height)
I'm implementing standard JQuery drag&drop functionality, though with some specifics: I use custom generated dragging element (using helper function of draggable() initialization):
...
0
votes
1answer
59 views
jQuery sortable with droppable does not work
I am trying to use jQuery sortable, droppable and draggable to work together.
I want to move [#Draggable]'s item to [#Droppable], after mouseover on [#Sortable].
My Step
Start drag [#Draggable]'s ...
0
votes
2answers
41 views
How to replicate a draggable/droppable instance in jquery after first instance completed
I have a small jquery draggable/droppable app I am building. You can see it here:
http://jsfiddle.net/franco13/AwnJA/1/
I need to do the following and I am new to dragging and dropping in jquery, so ...
0
votes
1answer
40 views
How to keep a draggable object in its original place after drop
I have a small draggable/droppable jquery app and I am having trouble retaining the draggable item and keeping it in its original position once its clone has been dropped.
Can anyone assist?
...
0
votes
0answers
47 views
jQuery Draggable/Droppable animate remove()
I'm running into an issue when I try to call remove() after an animation on a draggable element.
Basically, when an element is dropped, I want to:
Animate the scale of the dropped element down
...
1
vote
2answers
28 views
Droppable not going to correct spot
I have created an inventory that's styled and since I have added the styling in .css when items are placed back into the inventory they go below the existing items and ruins my box. How can I fix ...
0
votes
1answer
25 views
javascript - how to make multiple draggable clones?
now I'm trying to make a simple drag and drop game.
The first time I drag and drop a clone works fine, but it doesn't allow me to drag a clone anymore.
So I want to create as many clones as I ...
0
votes
0answers
27 views
How can I make drag/drop pyramid with jquery ui
I try to make something like pyramid with jquery ui, but I can't enveloped all cases. I try to use this code.
var f1 = 0; var f2 = 0; var f3 = 0; var f4 = 0; var f5 = 0; var z = 1;
$('#container ...
0
votes
1answer
134 views
Jquery drag/drop copies cell content instead of moving it
I have 2 tables:
- Table 1 holds static data which can be copied to any location within table 2.
- Table 2 can be updated by the data copied from table 1 OR by moving data around in this table.
...
0
votes
3answers
96 views
How to pass a variable from jQuery draggable to droppable
I am trying to use jQuery draggable/droppable to drag a list item to a div, upon which the list item will be deleted from the draggable ul and an ajax call will be made to delete the corresponding ...
0
votes
1answer
209 views
HTML5 + Javascript drag n drop
my question is based kind of on this example but there are some differences..
http://jsfiddle.net/raad/SSxdB/15/
i use a menu, which has 3-4 categories, and each category, has 4 items..
so i want to ...
0
votes
1answer
186 views
Jquery Drag & Drop: Change element from li to div and back
I am trying the following:
Stage 1:
Change the draggable element from li to div on drop in #canvas
Move the draggable element inside #canvas
Stage 2:
Change the draggable element from div to li ...
0
votes
2answers
68 views
JQuery - Trouble with sorting divs
I am absolutely new to JQuery and basically to the whole web development. I am trying to drag some divs (+ their content) from the left div (#selection) to the right div (#drop) and then make them ...
0
votes
0answers
9 views
I am trying to count number of drop in a div
I have 3 draggables and I want them to fit in one droppable each, when they have all been dropped I'd like to do something... I don't know if this code is very good but I don't know how to do it in ...
0
votes
0answers
47 views
jQuery UI Snap to Grid
How can I make a dragabble div snap to grid (take the same properties as the div it was dropped on)
$(function () {
$(".draggable").draggable().resizable();
$(".droppable").droppable({
});
...
0
votes
0answers
37 views
jquery droppable highlighted by draggable that doesn't drop
I am trying to make a simple web app game that will accept only the correct draggable, but I still want my droppable to highlight when the incorrect item is hovered over it. I have been trying ...
4
votes
1answer
175 views
Missing over-effect after switched div (jquery draggable/droppable)
I´m using jquery´s draggable and droppable for implementing a drag'n'drop -functionality:
There are two tabs, each containing a droppable-zone with draggables. Now I can pick a draggable a move it to ...
0
votes
1answer
217 views
How to make jQuery UI droppable hoverClass work only with draggables?
I have a sortable and droppable list, and also a separate set of draggables:
ul.sortable
li.droppable
li.droppable
li.droppable
/ul
ul
li.draggable
li.draggable
li.draggable
...
0
votes
1answer
47 views
JQuery UI Attaching a draggable top a specific droppable on page load
Is there a simple way to programmatically "bind" a draggable to a droppable on load?
I am trying to create a JIRA like dashboard, where the draggable is attached to a specific droppable and ...
0
votes
1answer
85 views
jquery - prevent a draggable link from opening when I drop it
I have a grid 5 x 5 of droppable squares and then also several draggable squares which are links like . When moving them between the squares on the grid there is no problem but I also have a 'trash' ...
0
votes
2answers
89 views
Draggable/Droppable, Sortable, or a combo?
I've been fussing with this task for a few days now. I cannot figure out how to get everything clicking. I can get pieces of it working perfectly. Either the drag and drop is perfect, or the ...
0
votes
1answer
140 views
jqueryui draggable reposition offset while dragging
I have elements with margin:0px auto; set that I'm trying to drag. When the drag begins, the element is shifted to the left, not accounting for the automatic margin. The draggable is significantly to ...
0
votes
1answer
257 views
JQuery-UI draggable reset to original pos.?
This is probably very easy to do, but I always think too complicated.
I've just set up a simple test with #draggable / #droppable with a fixed width/height + float:left.
I then want a reset button ...
1
vote
1answer
136 views
jQuery droppable getting dropped object context
How do you get the context of a jQuery widget that has been dropped onto a droppable target?
e.g. this is the widget that is made draggable with this code:
In the code that makes the images be ...
0
votes
0answers
156 views
jQuery UI droppable Disable/Enable not working properly
I am having a bit of a problem with jQuery UI's droppable function and I was hoping to find a little help with it. I am trying to build a drag and drop football pitch application which has 11 div's ...
0
votes
1answer
74 views
jquery droppable into categories
Ok, so the droppable jquery ui thing is a little confusing to me how its supposed to work. Here is what i'm trying to do. i've got 6 divs that represent some sort of item, and they need to be dropped ...
1
vote
0answers
75 views
jQuery droppable hover event not firing on first attempt
I'm having an issue where droppable areas are not accepting draggable items on the first attempt. Subsequent attempts seem to work just fine.
Please see this code - http://jsfiddle.net/grimmus/Pp9Qf/
...
0
votes
0answers
43 views
Using jQuery to change colspan by dragging edge of cell
I would like some tips on how I might be able to change the colspan on a table by dragging the edges of the colspan using jQuery and jQuery UI. Basically, I have a table with 24, 48, 72, or 96 ...
1
vote
1answer
128 views
jquery draggable and droppable - stop inheriting parents css
This is hard to explain but I have draggable and droppable elements on my page. Some of the droppable elements have draggable elements inside them already but most don't.
When you hover over the ...
0
votes
1answer
64 views
getting the id of a containing div when starting to drag with jquery
I have an element which is draggable and then several elements which are droppable on the same page.
When dragging starts I want to find out the id of the div containing the draggable element in its ...
0
votes
1answer
325 views
jquery Drag and Drop - droppable area has border and draggable item won't snap to the inside of this border
I'm using jQuery drag and droppable to create a list of tiles plus a draggable widget which can be dropped in any of the tiles.
Each tile has a border but the widget doesn't, so although they are ...
0
votes
0answers
186 views
jQuery ui draggable drop into an iframe
I am trying to use jQuery ui draggable and droppable and it works fine if i try on the same page. But when I try to drag an element and drop into the droppable area defined in the iframe then it ...
0
votes
1answer
370 views
Drag-Drop elements between parent frame and child iframe
I am trying to drag-drop elements between parent frame and iframe using jQuery.
I have a panel in parent frame which contains some draggable items which can be dropped on the child frame. I tried to ...
0
votes
1answer
161 views
Why preventDefault does not work?
This is a part of my code.
If I try to drop an image on the block preventDefault does not work.
jQuery(document).ready(function($) {
$.event.props.push('dataTransfer');
...
1
vote
1answer
224 views
jquery added class inside a droppable not becoming resizable if outside drop event
When dropping something in this drop area, the object will be cloned and will get part class.
$('.drop').droppable({
tolerance: 'fit',
accept: '.drag, .part',
drop: function (event, ui) {
...
0
votes
2answers
44 views
How can I get the ID of the div that a draggable object which was just dropped on this USED to be dropped into?
I need something likt this:
$('#dropZOne').droppable({
drop: function(ui,event)
{
$($(ui).getPreviousDropZone()).droppable('options',{disabled:false});
}
});
I hope my ...
0
votes
1answer
77 views
jQuery draggable - change the listener
I'm having a problem with the draggable/droppable objects. I have the draggable object set to be about 400px wide and 50px tall. The droppable is the same height, but the width is only about 80px.
My ...


