Tagged Questions

47
votes
13answers
1k views

JS library (with drag n drop) compatible with iOS and regular browsers

Does anyone know of a JS framework that has drag and drop functionality and is compatible with mobile (iOS) and regular browsers? I currently have a web-based app and it is a hassle to make its ...
34
votes
1answer
1k views

jQuery's drag and drop - reverse engineering Facebook's uiTokenizer on 'Arts & Interests'

I'm reverse engineering facebook's uiTokenizer using $.special.event.drag and $.special.event.drop and jQuery because jQuery UI's sortable / draggable is heavy and slow. My question I think is ...
12
votes
3answers
6k views

How can I get jQuery UI's Draggable and Sortable functions to work on the iPhone?

I have a page that uses JQuery UI; in particular the Sortable interaction. The page works fine for desktop web browsers with mice, however I can't get the drag-drop functionality to work on Mobile ...
11
votes
3answers
535 views

How can I set a “bounding” area for my drag-able object in javascript?

I'm making a Drag and Drop JavaScript engine. I learned how to set a bounding box as the parent element. However, now I wish to set the bounding box to any parent of any parent, or as the entire page ...
10
votes
3answers
194 views

Drag & Drop on Safari iOS: Wont drag, wont respond to drop on desktop/iPad

I am coding a webpage to be viewed on iPad. It uses Safaris/Webkits drag & drop. I have exactly copied Safari's example drag & drop code but it wont work. My Problem: The ondrop event is ...
10
votes
3answers
6k views

How to determine presence of HTML5 drag'n'drop file upload API (like the one from FF3.6)

I am writing an application that's supposed to support HTML5 drag/drop API for file, much like the on described here. I would like to perform a programmatic check on whether the browser support this ...
10
votes
1answer
10k views

Using jQuery UI drag-and-drop: changing the dragged element on drop

When using jQuery UI draggables and droppables, how do you change the dragged-and-dropped element on drop? I am trying to drag one DIV to another sortable DIV. On drop, I'd like to change the classes ...
9
votes
1answer
67 views

Adding cookies to drag and drop

I'm creating an drag and drop plugin and I thought to make it a little unique i would add a cookies feature to save the position of the dragged elements. I'm currently using the following code for ...
9
votes
10answers
6k views

Best Javascript library for drag and drop? [closed]

I'm looking for the best JavaScript library for handling complicated drag and drop operations. I'm interested in implementing a grid-based inventory system for my own Web 2.0-style RPG, like Baldur's ...
8
votes
7answers
368 views

How do I make a function to find the coordinates of an element regardless of its positioning?

I'm making a drag and drop engine in JavaScript, and I don't know how to set the correct position of the dragObj because it changes depending on the parent element's positioning type (Does the dragObj ...
8
votes
3answers
519 views

Handling Scroll bars with jQuery event Drag and Drop

I have a room div with some toy divs arranged on it, see Toys are absolutly positioned and are drag-able with in the walls of the room . The room container div has a fixed height and height, so the ...
8
votes
6answers
5k views

Preventing click event with jQuery drag and drop

I have an elements on page that are draggabe with jQuery. These elements have click event wich navigates to another page (ordinary links for example). What is the best way to prevent click from ...
8
votes
7answers
6k views

Drag and drop image into a web form

We have a web page (HTML javascript and PHP mostly) that allows a user to upload an image. We have the normal browse button, and it works fine. However, we want to add the functionality to drag and ...
8
votes
5answers
28k views

JQuery drag and drop - how to get at element being dragged

I am using the JQuery libs to implement drag and drop. How do I get at the element that is being dragged when it is dropped? I want to get the id of the image inside the div. The following element ...
7
votes
3answers
1k views

jQuery Nested Sortable Draggable. Not working help please

I'm trying to make this thing. The first part allows you to first drag an element into a sortable div, which is working fine. I then want to have that div become sortable as well so I can drag new ...
7
votes
1answer
482 views

javascript mouseover while dragging

I'm trying to implement a drag and drop script and have hit the wall with one problem. When you take an item and start dragging it - the item is directly below your cursor and onmouseover event is ...
7
votes
6answers
3k views

Making paths and images dragable in Raphael js

Is it possible to be able to drag and drop objects other than just circles and rectangles around a page using Raphael js? I want to add in paths and images which you can then move around but its ...
7
votes
2answers
2k views

How to POST files from HTML5 Drag-Drop to a Rails 3 App & Paperclip?

I'm trying to get some html5 drag-and-drop functionality in a Rails 3 app with Paperclip. So, basically: One or more files are dragged and dropped onto a DIV Files are POST'ed to a Rails action ...
7
votes
3answers
595 views

Drag-n-Drop on contentEditable elements

There are numerous WYSIWYG editors available on the internet, but I'm yet to find one that implements some form of drag-n-drop implementation. It is easy to create one's own editor, but I want to the ...
7
votes
3answers
1k views

Getting the position of the element in a list when it's drag/dropped (ui.sortable)

I have a sortable list like this one: http://jqueryui.com/demos/sortable Is it possible to get the start and end position of the element in the list, when it has been moved? I'm talking about their ...
7
votes
8answers
12k views

HTML drag and drop sortable tables

Ever wanted to have an HTML drag and drop sortable table in which you could sort both rows and columns? I know it's something i'd die for. There's a lot of sortable lists going around but finding a ...
6
votes
1answer
554 views

Safari 5.1 broke HTML native drag and drop?

Last night, I thought I'd do a quick project to demonstrate HTML5 capabilities and to try some things out. However, I can't seem to figure out how to get drag and drop to work in Safari, while it ...
6
votes
3answers
245 views

What format (MIME Type) should I use for HTML5 drag and drop operations?

I'm starting to experiment with HTML5 Drag and Drop. Then, in the dragstart event handler we should run setData(), which receives two parameters: format and data. function dragstart_handler(ev) { ...
6
votes
2answers
287 views

why not use mouseup event target rather than position for “old school” drag-n-drop?

So, from what I've seen nearly all the IE compatible drag-n-drop use positioning to determine where something is dropped. Doing something like mousedown, determine the position of all droppable, ...
6
votes
4answers
1k views

HTML5 drag & drop behaviour

I'm making extensive use of the HTML5 native drag & drop, and it's almost entirely behaving itself, with one small exception. I'm trying to highlight my dropzones when anything is dragged over ...
6
votes
2answers
1k views

Detecting HTML5 Drag And Drop support in javascript

I'm trying to detect the HTML5 Drag And Drop support in javascript. Modernizr seems to not handle this test case. Any idea ? Regards
5
votes
1answer
123 views

How to implement a TinyMCE Table Drag Handle?

In tinyMCE you can use the table plugin to insert tables, and that is fine. Now when it comes to moving the table around in your content, it's a bit more tricky. The correct way of doing it at the ...
5
votes
3answers
282 views

Get URL of resource that is drag-and-dropped on field

I have an html page with a certain input field and I want to add the following functionality. The user should be able to drag and drop a resource onto the field. The result of this action should be ...
5
votes
1answer
239 views

Dragging: Replacement of the data

I got a webpage with some html elements including a textarea and an embedded contenteditable iframe (a rte). Using this code i manage to catch the draggesture event on the main page and set the ...
5
votes
2answers
439 views

file upload using drag drop

I want to upload and download files using drag n drop between user computer and web browser. How can I do it ASP.NET/AJAX or JS/JQuery?
5
votes
3answers
2k views

Is there an easy way to do click-and-drag scrolling in text frames?

I have a div with overflow:auto and a scroll bar, and I'd like to be able to drag the contents to scroll. I don't need to be able to select text. Is there an easy way to do this? A jQuery plugin would ...
5
votes
2answers
2k views

HTML 5 drag-drop into wysiwyg editor in Firefox

I have a wysiwyg editor using the HTML 5 drag-drop api to allow the user to place widgets within the page they are editing. When the OnDrop event fires, I prevent the default event, and insert some ...
5
votes
3answers
1k views

Javascript tabs widget with drag and drop reordering

Do you know of a tab widget that has built-in drag+drop reordering? I'm building an editor-like interface and want to allow the user to reorder their tabs. So far I've been using ExtJS with a ...
5
votes
3answers
2k views

Browser “drag and drop” events: Can anyone fill in the blanks?

I've never really had the need to use any drag functions until now, so let me fill you in on what I've discovered so far: Drag events are events that take place when the user is dragging an object. ...
5
votes
6answers
2k views

Is it possible to drag and drop from/to outside a Flash applet with JavaScript?

Let's say I want a web page that contains a Flash applet and I'd like to drag and drop some objects from or to the rest of the web page, is this at all possible? Bonus if you know a website somewhere ...
4
votes
2answers
140 views

Disable dragging of a file system image into a browser.

I am experimenting with the HTML5 file API. I notice however that browsers have a default behaviour where they display an image if you drag the image into the browser. This can however be annoying if ...
4
votes
1answer
327 views

Drag and drop elements into an iframe. Droppable area has wrong coordinates and collisions are wrong

I need to implement drag and drop functionalities in a web application between elements present in a web page, and elements inside an iframe (before you start complaining about iframes, I NEED it for ...
4
votes
1answer
129 views

Make Jquery UI drag and drop work when zoomed out

I was looking at this drag and drop demo for Jquery UI. The demo works fine at a normal zoom. But if you zoom out to say, 50%, things get wonky. ...
4
votes
2answers
706 views

jQuery multi-list solution for comparing and saving items

I'm making a tool, which can compare and list items. I'd like to animate them so that they look cool. Please help me fix some issues in the implementation. There are multiple problems so i made a ...
4
votes
3answers
556 views

Image viewport with zoom in Javascript

I want to display a huge image inside a viewport in a html page. I would like to be able to drag and drop the image to move it inside the viewport, like in Google Maps. Any library where I can find ...
4
votes
2answers
3k views

How can I disable Text Selection temporarily using JavaScript?

this is a bit of a specific question so I'll get right to the point. I'm working on a short and simple drag and drop routine for part of a web application, and although the dragging and dropping bit ...
4
votes
3answers
2k views

Logic behind drag and drop

I am wondering the "how it works" and "how it should be designed and implemented" side of the basic drag & drop functionality. I have never yet implemented such a functionality. I am planning to ...
4
votes
4answers
2k views

Preventing click event with Scriptaculous drag and drop

I have some elements on a page which are draggable. These same elements have a click event which navigates to another page. I'm trying to determine the best way of preventing the click event from ...
4
votes
3answers
3k views

Javascript tree views that support multiple item drag/drop

We are currently using the ExtJS tree view in an application - a requirement has arisen requiring a user to select multiple nodes (which the tree view supports currently through a pluggable selection ...
3
votes
2answers
68 views

HTML5: drag out a JS generated file

I have a feeling security concerns may not allow this but is it possible to generate a file with JavaScript and allow the user to drag it to the desktop (or file system)? The following code drags out ...
3
votes
1answer
60 views

Issue with my drag and drop plugin

I'm currently developing a Drag n' Drop plugin. I have just finished a feature so people could drop the draggable item on a target. Now it works perfect on the jsfiddle: http://jsfiddle.net/XvZLn/18/ ...
3
votes
1answer
55 views

How can I integrate jQuery UI's drag and drop with files?

I want to be able to drag and drop files into different places in the page to mean different things. I am already using jQuery UI's drag and drop interface and it would be nice if I could integrate ...
3
votes
1answer
54 views

Creating handle feature for drag and drop plugin - jquery

I'm developing a drag-and-drop plugin for jQuery. It's going well, but I don't know how to implement the handle feature, which is very important in such a plugin. I really don't know how to get this ...
3
votes
2answers
92 views

Chrome/V8 slow onmousemove() over certain elements

I'm developing a music player based on jQuery, which has a long list of items in the main section (unordered list, with <div> elements in each <li>, for info about artist, album and ...
3
votes
3answers
147 views

Drag with mootools on mobile

Is there a way to make to work the mootools class "Drag" on safari mobile? Please don't link me to other frameworks.

1 2 3 4 5 9