An element capable of being dragged.

learn more… | top users | synonyms

0
votes
0answers
11 views

Google maps v3 - drag pin but restrict boundary

I am creating a Google map with a draggable marker, and I want to restrict the movement of that marker to the bounds of a circle. I am able to drag the pin, I am able to get the new co-ordinates of ...
0
votes
0answers
7 views

Warn desktop user of draggable div

First of all sorry if this is not the correct place to post this question, as it is not exactly a programming issue. Im building a site that uses the jquery iscroll4 plugin in some of the divs ...
1
vote
0answers
22 views

***undefined method `draggable' for #<#<Class:0x007f98c327fa70>:0x007f98c4c73cd8>***

I've followed the instructions on how to use query in my application: 1. I am using rails 3.2.8 2. I have installed the 'query-ui-rails' gem and included in my bundle. 3. I added the following to my ...
0
votes
0answers
22 views

JQuery Saving Sortable List

I know this question has been asked before but the solutions did not work for me. I am trying to save the new ordering of items to the database. In DB is saved so: ...
1
vote
0answers
36 views

JQuery Draggable DIV in Draggable LI move to new DIV or create new DIV

I'm new to js and jquery, and it's hard for me to code this task: I have a big DIV (.pins_dragger) element, it is fixed on layout. DIV.pins_dragger contains some other DIVS (.group) which are ...
0
votes
2answers
18 views

How to get location of mouse in JavaFX?

I am a beginner in java(fx). How do you get the mouse location in x and y in JavaFX? I tried using AWT's MouseInfo(also imported it), but it's not working. I also saw the code for it in Ensembles(that ...
0
votes
0answers
15 views

jQuery draggable snap to 4 corner of the screen and when clicked it expand like Menu or Tooltips with html code inside

Any idea how to let jQuery draggable button snap to 4 corner of the screen and when clicked it expand like Menu or Tooltips with html code inside. I want this function also to work on iPhone/iPad when ...
0
votes
1answer
35 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
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
17 views

get position of mouse on drop jquery

using jQuery UI to for some drag and drop. I will have to tell if item is dropped outside of a div so I need to get the position of the mouse on stop, but it isn't working the way I had hoped. here ...
0
votes
1answer
10 views

Positioning of dragged, dropped & appended items using JQuery-Ui Droppable

I am using JQuery-ui draggable & droppable. I want to add dropped elements to the drop-target container, while preserving the apparent position that it had when it was dropped. Using .html() lets ...
0
votes
1answer
16 views

fixed position + draggable in Webkit

i have a strange issue with my draggable div container. I try to make a Div with text draggable and want the headline of each div sticky. In Firefox all works perfect but in Chrome(webkit..) it ...
0
votes
1answer
49 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
1answer
21 views

Dragging a CSS Rotated Image Within a Div

I haven't been able to quite find the solution to my problem here... I am basically creating something like the Facebook thumbnail editor where the user can move an image around to the visible ...
0
votes
1answer
18 views

Drag and Drop Html text box issues

I have tried continuously to make a draggable text box and the text box always returns to the place it started. I would like the text box to be clickable and draggable and once it is dropped it will ...
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
18 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
11 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
1answer
32 views

jquery draggable bug when scrolling horizontally

thing is that i got this helped from someone here to drag a div but if you wanted to scroll down/up it wouldn't be possible, with this code, that won't happen: $(function() { ...
0
votes
0answers
22 views

jquery ui drop&drag minecraft like jquery ui

Hello I have been working in this ( http://jsfiddle.net/LdeGC/2/) for almost one day, I have been reading the api. But i havent had any luck: if ...
0
votes
0answers
24 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
33 views

Make the rows of the datagrid draggable in GWT

I want to make a datagrid in which rows will be draggable so that a person can move rows up and down by dragging the rows. As row of the datagrid will be get as an element. I know how to make the ...
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
41 views

WPF clickable area around controls in grid

I have an issue with making a custom title bar for a form. It would contain a search textbox aswell as a few sliders, as seen on this image: Now, imagine that as the title bar - everything that is ...
4
votes
2answers
29 views

If an item was not dragged to a specific location, then have it go to back to original position?

I made a quick drag and drop type menu. Basically I made it so you drag an item from a list into the trash div, and it will give you an alert saying "gone" I want to make it so that you can't just ...
0
votes
1answer
27 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
1answer
46 views

z-index of nested span within jquery draggable div

I have a draggable div and nested within that div I have another div that is resizable. The div's are created on the fly. To make matters slighty more complicated, I then have a span within the ...
0
votes
0answers
46 views

jQuery UI droppable, draggable, resizeable and snap to grid

I have the following structure: <div id="grid"> <div class="columns"></div> <div class="columns"></div> <div class="columns"></div> ... ...
0
votes
0answers
37 views

Being able to move an “undecorated” application window on the screen

I am building a booking system application using JFX and the JavaFX scene builder. I thought that to make it look better I could remove the borders, or as the code is, set it as "undecorated". Now I ...
1
vote
1answer
27 views

jquery draggable containment doesn't work if draggable element has transformation applied

I'm trying to use JQuery Draggable's containment feature but it doesn't seem to work if the object being contained has a transformation applied to it. JSFiddle example: http://jsfiddle.net/US2fr/ ...
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 ...
0
votes
1answer
39 views

jQuery draggable with touch punch - flickering issue

My draggable div becomes draggable on touch devices, but it "flickers" to weird positions when starting to move it. Works like a charm om desktop devices but not on iPad or Android. Any suggestions ...
1
vote
0answers
50 views

Jquery UI Draggable Containment

I have an image that I can drag around a container using jQuery UI. I am using draggable("option", "containment", [x1, y1, x2, y2]) to set draggable containment which works perfectly. I have written ...
0
votes
0answers
21 views

jquery: make item in parent window draggable from within iframe

I have an issue with making an element in a parent window draggable. Im trying to make it draggable from within an iframe. There is not really a workaround, i.e. I cannot include jquery in the parent ...
0
votes
1answer
17 views

How to make DIV draggable and VISIBLE accross the whole body with this HTML structure? JQuery

<body> <div id="sidebar"> <ul> <div id="color_submenu"> <div class="colors" style="background-color:red;"></div> <div class="colors" ...
0
votes
0answers
21 views

I wanted to know how to have the same function as Jetstap

I want to know if there is already something that I can use to do this, or at least some tips as to what I will need to accomplish this. https://www.jetstrap.com/ On the left side there is a toolbar ...
0
votes
1answer
17 views

Preventing two draggable circles from overlapping when they intersect

Ive looked everywhere i could for what i am guessing has a simple solution. But i am a new programmer and am having a bit of trouble. I have a few draggable image view circles in my view and i want to ...
2
votes
1answer
146 views

Jquery Image Slide. Zoom out

I am making a banner were you can zoom the image with the jquery slide function and were you can drag the image. Its working perfect except for 1 thing. When you zoom in the image with the slide ...
2
votes
2answers
96 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
29 views

Using onTouchEvent when moving ImageView - image flashes and duplicates

I spend all the night to figure out what the problem, but with no success. I try do add an ImageView to RelativeLayout, and move it (drag it) by finger. I tried many solutions, from very simple and ...
0
votes
1answer
79 views

Jquery slider and draggable dont work

I'm making a banner were you can resize and drag the image. I works fine in jsfiddle. But for some reason it dont work on my webpage. Here is the example in jsfiddle: ...
1
vote
0answers
36 views

ExtJS draggable panels with custom proxy?

I have read a few articles similar to this: http://www.codeslower.com/2011/7/Using-the-draggable-property-in-ExtJS http://docs.sencha.com/extjs/4.2.0/#!/guide/drag_and_drop I have a simple panel: ...
1
vote
2answers
85 views

jQuery image resize out - width doesn't fit

I am trying to make a banner where you can resize and drag the image. Everything is working fine except for resizing out. When you resize the image with the slider under the image. The image will ...
1
vote
0answers
18 views

jQuery UI draggbale delegation

I'm trying to delegete draggable event with jQuery.on(). It work well if you dragging elements using mouse because I use mouseover to initialize draggable(see fiddle). But there is no mouseover event ...
0
votes
1answer
17 views

Draggable events using “on” syntax

I have a draggable like this: handle.draggable(start: function(event, args){ ... }); what's the equivalent of it for using with on? handle.on("dragStart", function(){ ... }); I have a generic ...
1
vote
1answer
56 views

Best way of making draggable element jump to cursor (and start drag) when mousedown on parent

I've got a home-made slider made from jQuery UI's draggable() function: $("#petrolGauge .fuelBar .slider").draggable({ containment: "parent", axis: "x", drag:function(){ ...
0
votes
1answer
41 views

Jquery All divs move but need just one to move

I have this following code below. It has div within one bigger div. I only want the "#set" div to move, not the other divs. But right now the user can move anything that's within a div. How can I ...
0
votes
1answer
79 views

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 "needs" and I want ...
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
1answer
36 views

Moving image with the cursor

So, I'm working on a processing project that lets me use an image as a cursor but I've been having problems with the cursor image because it has been constantly blinking. I read that if the cursor ...

1 2 3 4 5 30