1
vote
0answers
81 views

jQuery UI drag drop swap elements

I cant handle with one thing - swap elements betweens two divs. Here is my code $(function () { $('#container').sortable({ tolerance: "pointer" }); $('#box1').sortable({ ...
0
votes
0answers
33 views

Three Dub Media .drag event not working for all elements in class

I'm using a selectable to select some elements which assigns the '.ui-selected' class to the elements. Then I'm using the .drag event handler from three dub media to drag all elements at the same ...
0
votes
2answers
70 views

Why the DIV is draggable once in IE using Crossrider & JQueryUI ? & no dragstop event fired?

I'm using Crossrider, I want to add a draggable div to the page's DOM. The following code works well on Chrome and Firefox, and the dragstop handler function is fired for both Chrome and Firefox ...
0
votes
0answers
54 views

Dragging up to hide a div like mobile, jquery

I have this section in my application which I wanted to hide upon drag up like those in mobile phones, is this possible using jquery? or maybe jquery ui? here is the screenshot of what I did,
0
votes
1answer
239 views

Jquery dragstart and dragend events in Jquery UI

Is there somehow a way to access these two events? Do the even exsist? I have to set transfer data on dragStart and dragEnd to an event object.
0
votes
1answer
102 views

How to catch dragend event in javascript?

I'm trying to catch the dragend event in Javascript for a draggable DIV. The dragend event is not fired at all, why ? and how to solve this ? PS, I'm ussing .draggable() method from: jQuery UI 1.9.2 ...
2
votes
0answers
72 views

.droppable doens't give visual feedback on second drop

I've got multiple drag and drops (jquery-ui). In separated div's. When I drag the draggable and drop it outside the droppable and then drag it again and drop it on the droppable it doesn't give ...
0
votes
0answers
76 views

implementing my own jqueryui selectable: cursor and ghost outline

I am trying to implement my own jqueryui selectable, here is my first step: http://jsfiddle.net/hvqz7/2/ compare to the jqueryui selectable version at http://jsfiddle.net/hvqz7/ You can find that: ...
1
vote
0answers
94 views

Highlight letter individually else revert

In my word game I have got a style that shows the user which word to drag and drop the letters on to in order to complete. It then allows the user to drop letters into that area but doesn't restrict ...
0
votes
2answers
140 views

jQuery click and drag 3 times to trigger event

I'm trying to figure out how I could trigger an event which after click and drag 3 times over element would trigger an event. The scenario is rubbing the 'Alladin's lamp' (I know) - when you click and ...
0
votes
2answers
712 views

Making jQuery UI draggable outside the window

How to make a <div> draggable outside the current window using jQuery UI? Currently the <div> will stop being draggable when the cursor is out of the window. But if I use onmousemove on ...
1
vote
1answer
195 views

Jquery UI Drag Drop defining what can and can't be moved

I have this Drag Drop UI, here, created from this tutorial http://net.tutsplus.com/tutorials/javascript-ajax/inettuts/ I am having problems when I don't want a widget to be undraggable/unsortable. At ...
0
votes
3answers
624 views

Bind function to jQuery Dialog drag event?

How can I run a function when a jQuery UI dialog is dragged? I tried binding dialogdrag, draggable, drag, but none of these are working :(
6
votes
3answers
1k views

Jquery UI toggle button (checkbox) click/drag bug

I'm posting this along with the best answer I have come up with. I haven't found any similar questions, so here goes. When a input of type checkbox is converted to a jquery ui button, I have observed ...
2
votes
1answer
71 views

jQuery Id of item being dragged

This seems like it should be a simple task, but I'm a noob as far as goes jQuery, so here's what I'm looking for: I have something like this: <div class=draggable id=thing1> some contents ...
0
votes
1answer
149 views

jquery draggable function gets called twice

Any reason why this function gets called twice? Basically the script should move the container 100px to the right if it moves too far in the other direction. <script type="text/javascript"> ...
0
votes
0answers
492 views

Jquery Draggable containment problem [closed]

Having problems with Draggable. I'm using it on this site http://personallycorporate.com/dev/cards.php I cant get it to take the top and left css values from the containment div not the window - ...
1
vote
2answers
782 views

Why doesn't my dialog drag or resize?

I am unable to drag or resize a dialog box. I have downloaded all dependencies and tried various settings in options, but still no joy: <script type="text/javascript"> function dialog(){ ...
5
votes
3answers
6k views

JavaScript Drag & Select functionality done right

I'm trying to write a drag & select functionality using HTML & JavaScript. By that I mean that there will be a set of objects with arbitrary absolute positions. I want to be able drag the ...
1
vote
1answer
235 views

Making a Google Maps demo work with Chrome and Safari

This is a demo of dragging on Google Maps v3, It doesn't work well in Google-Chrome or Safari -- what do I need to change to make it work?
5
votes
4answers
3k views

JQuery Dragging Outside Parent

I'm using JQuery's draggable(); to make li elements draggable. The only problem is when the element is dragged outside its parent, it doesn't show up. That is, it doesn't leave the confines of its ...
2
votes
3answers
319 views

Appended new divs, but they're not draggable?

I'm a newbie and have some problems with making new divs draggable. The example is: http://jsbin.com/iyexi3/ The problem is when I show the dialog for the name, I create some divs, but they aren't ...
2
votes
3answers
2k views

jquery drag element

i have a problem that i cant understand what to pass in the draagable function to make an elemnt draagable. I want to make my draggable through its id test. Can anyone tell me how to do this. Code ...