How to drag something

March 15th, 2006 in Basic Tutorials · By David Tapper

Drag-and-drop is one of the most important components of TheBroth. This tutorial describes a simple method for implementing drag-and-drop functionality in a web page using JavaScript.

Set up

We need to set up a few things before getting into the actual dragging code. We will need an object that is to be dragged. In this example, there will be only one draggable object, but it could be expanded to include unlimited draggable objects. We are using a div element, but the same could apply to any visible element such as an img.

First, the object needs some CSS styling. For this demo, we have given it a green background and nice bevelled border. It also needs to be set to position:absolute; so that it is free from the document cascade and can be positioned at will anywhere in the browser window.

We need a few things to happen in the JavaScript on page load. We set document.onmousemove and document.onmouseup to run our functions as these events are each triggered. These functions will be described shortly.

We also set up some globals and run an initialise function. The position of the drag object is set in this function so that the left and top properties are initialised. You could position it in the CSS, but then you would not have access to these values via JavaScript.

The object is set to display:none in the CSS and then display:block in the javascript. This is so that it will be invisible until it is ready to be dragged.

The ondrag and onselectstart settings are to stop Internet Explorer misbehaving. These are IE specific methods that have control over the behaviour of click-and-drag actions. By setting them to an empty function, they are disabled. Otherwise, Internet Explorer thinks you want to select text and will start highlighting things.

var dragObject, offsetX, offsetY, isDragging=false;
window.onload = init;
document.onmousemove = mM;
document.onmouseup = mU;

function init() {
	var ob = document.getElementById("dragObject");

	ob.ondrag=function(){return false;};
	ob.onselectstart=function(){return false;};

	ob.style.left="100px";
	ob.style.top="100px";
	ob.style.display="block";
}

Mouse down event

Once you have set up, the drag-and-drop is controlled by three DOM events: onmousedown, onmousemove, and onmouseup. First of all, we want to detect an onmousedown on the drag object. Our own function will be assigned to the drag object to run when the mouse is clicked down.

There are a number of ways to assign a function to the event. The simplest way is to use the onmousedown attribute that can be defined in the HTML:

<div onmousedown="javascript: mD(this,event);"></div>

The this argument is a pointer to the object that was clicked. The event argument passes through a reference to the event object itself. This contains all kinds of data that are part of the mouse down event. Internet Explorer has it’s own way of accessing the event object via window.event.

function mD(dragObject, e) {
	if (window.event) e=window.event;
	//mouse down handling...
}

We need to know the position of the mouse as well as the position of the drag object. The position of the mouse is contained in the event object as clientX and clientY. The position of the drag object can be accessed via style.left and style.top which we transform from strings to integers using parseInt. With these four values, we calculate the distance between the mouse and the top-left of the drag object.

We also set the global isDragging to true. This will let the other functions know that a drag is in action.

We end each of the mouse handlers with return false. This means that the event itself is halted and no other browser or operating system behaviours will occur.

function mD(ob,e) {
	dragObject = ob;

	if (window.event) e=window.event;

	var dragX = parseInt(dragObject.style.left);
	var dragY = parseInt(dragObject.style.top);

	var mouseX = e.clientX;
	var mouseY = e.clientY;

	offsetX = mouseX - dragX;
	offsetY = mouseY - dragY;

	isDragging = true;

	return false;
}

Mouse move event

The mM function will run every time the mouse is moved. We only want to do something if the object is being dragged. We quickly exit the function if there is no dragging in action by saying return.

If the object is being dragged, we want to reposition it to be below the mouse pointer. Once again, we access the mouse position via event.clientX and event.clientY. Using the offsets that were calculated in mD, we reposition our drag object:

function mM(e) {
	if (!isDragging) return;

	if (window.event) e=window.event;

	var newX = e.clientX - offsetX;
	var newY = e.clientY - offsetY;

	dragObject.style.left = newX + "px";
	dragObject.style.top = newY + "px";

	return false;
}

Mouse up event

The drag needs to be halted on mouseup. All we need to do is set isDragging to false and the dragging will end.

function mU() {
	if (!isDragging) return;
	isDragging = false;
	return false;
}

Final example

Click here to see the entire JavaScript dragging example in action. Feel free to make use of the code!

Share this:
  • del.icio.us
  • StumbleUpon
  • Furl
  • Netscape
  • Reddit
  • Technorati
  • YahooMyWeb

81 Responses to “How to drag something”

Jason24 Jun 06

I’m looking for a little something here… how do you use make these kinds of scripts so that the right-click is still useable as usual?

Ryx25 Jul 06

I like that you have the code written out so others can learn from your site.
Although, if I’m gonna code a game or something I’m gonna try PHP or flash first.

juliff17 Oct 06

The example deosn’t work

Markus17 Oct 06

Sorry, the link wasn’t working for a few days and we didn’t notice. Thanks for bringing it up, it’s fixed now. The example itself works just fine, btw :-)

Adam Kid11 Dec 06

You people need to make sure you know this!

KrishKeyan1 Feb 07

Excellent….

Mike Rumble13 Feb 07

Found this article through Google.

I’ve been working on some drag and drop stuff of my own recently and somewhat unsurprisingly IE was mis-behaving.

The ondrag and onselect stuff you wrote about did the trick so thanks for that, I’d not seen it mentioned elsewhere.

Morary Ionut26 Jul 07

Nice and simple example, thanks.

צביקה27 Aug 07

תודה רבה על ההסבר הבהיר והמוצלח! חפשתי משהו כזה הרבה זמן [נניח]

tenk u very match on the file example

Umair19 Dec 07

Great tutorial Markus though it require redundant remarks

Biren Kumar3 Jun 08

The code written is well.
But i want to know dragging folder & folder items from a tree structure menu and i want to place it some where else in this web page.
Thanking U !

Azad5 Jul 08

Nice toturial.But i want many object to move in same page.

Eren ASIGLI6 Sep 08

Hi.

Thanks for codes.you save my day : )

Good Article.
Best Regards.

Jim15 Oct 08

Thanks! Been searching all day for why IE was actually strangely with my dragging code, finally found this bit of magic:

ob.ondrag=function(){return false;};
ob.onselectstart=function(){return false;};

Thank you!

gb17 Feb 09

Hi,

First of all, thanks for this tutorial.
I am new to all this. The code is working, but i have a question. When the mM function is called how does it know that ‘e’ is the event variable? in mD ‘e’ is a parameter so i guess ‘e’ should be available only inside mD.

thanks, gb

jimmy choo outlet19 Apr 11

Cheap jimmy choo shoes
–the quality shoes are the basis of fashionable.jimmy choo said: “a good shoe is the basis of fashionable.”However,if you standup,balance and there is a surplus,of course,be loyal to their ownpreferences,and enjoy foot comfort first-class feel and others admiringglances.It’s suggested that you should buy jimmy choo shoesin the afternoon,because the foot will be slightly expanded in this time,at what time purchasethe size will be the most comfortable.
Also christian louboutin shoes herve leger dress on sale.

Gap insurance30 Apr 11

Wow! Some amazing effects. Definitely some great ideas here. Thanks for sharing!

top hiphop videos30 Apr 11

Great Blog. I add this Post to my bookmarks.

dog breeders30 Apr 11

That’s awesome. Almost inspires me to get off my plain and get moving too.

1685 dog breeders30 Apr 11

nice site and given to great post thank you for nice post

counter height dining sets30 Apr 11

I was wondering if you would like to be a guest poster on my website? and in exchange you could include a link your post? Please reply when you get a chance and I will send you my contact details - thanks. Anyway, in my language, there are not much good source like this.

Harshou2 May 11

Thnxx…. this is really a nice code.!

great job buddy….keep doing it…!

Navigation Screen5 May 11

As to some personal statement, This is quiet a good information for my law degree. This is really a nice to see.

Acura Air Conditioning Compressor26 May 11

This is nice post which I was awaiting for such an article and I have gained some useful information from this site. Thanks for sharing this information.

learn a language27 May 11

useful information rosetta stone from this site. Thanks for sharing rosetta stone this informatio

Newbie Blogger30 May 11

It makes our site look professional like this site thanks for your share
Meriahkan Pesta ulang tahun Bersama GarudaFood

Paydayloans15 Jun 11

Execellent tutorial. It helped me a lot. I was little much aware about it but your post gave me clear idea.

Healthy diet7 Jul 11

I really like your writing style, excellent info , appreciate it for putting up

HIPAA Training31 Jul 11

Great post I must say.. Simple but yet entertaining and engaging.. Keep up the good work!

top hiphop videos13 Aug 11

I am very much pleased with the contents you have mentioned.I wanted to thank you for this great article. I enjoyed every little bit part of it and I will be waiting for the new updates.

top hiphop videos13 Aug 11

Your impressive and unique content amazed me. You have written perfect piece.

sieraden13 Aug 11

i just wanna thank you for sharing your information and your site or blog this is simple but nice article I’ve ever seen like it i learn something today……….

sieraden13 Aug 11

this is an excellent website and i like it very much.

Trust Deed14 Aug 11

good one..

assurance hypothécaire14 Aug 11

interesting post !thanks

pool service tempe az14 Aug 11

Wow! Some amazing effects. Definitely some great ideas here. Thanks for sharing! !!!!!!!!!!

pool service tempe az14 Aug 11

Thanks for codes.you save my day : )

Debt Arrangement Scheme14 Aug 11

nice……..

Debt Arrangement Scheme14 Aug 11

Great tutorial Markus though it require redundant remarks..

Debt Arrangement Schemes14 Aug 11

I like that you have the code written out so others can learn from your site…

ugg bailey button16 Aug 11

Its told originate inside Different Zealand as well as Questions ugg bailey button. Uggs are quite pricey as with comparison by using alternative kinds with ugg boots uk.

Testking 650-36918 Aug 11

I just want to thank you for sharing your information and your website or blog is simple but nice article I’ve seen this way, I learned something today …

garage shoes18 Aug 11

This is awesome stuff, its sweet to be in the know.

louis vuitton wallet replica19 Aug 11

You’re so cool! I dont believe Ive read anything like this just before. So very good to uncover somebody with some original thoughts on this subject. Thanks for beginning this up. This weblog is something that is necessary on the web, someone with a small originality. Excellent job for bringing something new to the net!

advanced link building22 Aug 11

The publish is completely fantastic! A whole lot information and inspiration, each of which people need. I’ll bookmark this website for future viewing. Thank you for discussing.

chaussures air max23 Aug 11

Au niveau du contenu dupliqué : un site reprend mon flux RSS pour poster mes articles de fa?on automatique, j’ai d’ailleurs vu que ce dernier faisait les mêmes pratiques avec ton flux RSS Fred.
Ce genre d’action est considéré comme du duplicate content ou cela est-il bon pour mon référencement ?

authentic wholesale oakley sunglasses1 Sep 11

Thanks for posting this informative article This is a really good read for me. Hey this is a great post. I amm going to email this to my buddies. Thanks for posting this informative article I was searching some information.

pandora oxidized necklace free shipping2 Sep 11

Fantastic goods from you, man. Ive study your stuff ahead of and youre just as well amazing. I enjoy what youve got right here, adore what youre stating and the way you say it. You make it entertaining and you even now manage to help keep it wise. I cant wait to go through additional from you. That is really an incredible weblog.

rohit purohit3 Sep 11

Seo services and internet marketing

To get high page rank and bach linking

on your website visit to: www.nxpnetsolutions.com

Dow jones today8 Sep 11

nicely DOne

replica hermes handbags8 Sep 11

Thanks for sharing this great article! I feel strongly about it and love learning more on this topic. It is extremely helpful for me. I hope you post again soon.

swarovski crystals13 Sep 11

great writting,i will keep visiting.

swarovski crystals13 Sep 11

swarovski crystals http://www.findswarovksi.com

Replica oakley sunglasses20 Sep 11

http://www.oakleyssunglasscheap.com
InterestingI layout on your blog. I really enjoyed reading it and also I will be back to read more in the future

Louis Vuitton Neverfull GM M4015721 Sep 11

casual and comfortable but also highlight abercrombie clothing the sexy abercrombie and fitch outlet chest and waist lines extraordinary. A & F’s products texture quality, superior design, Abercrombie Fitch’s version of the model through the fitting lines, so the abercrombie outlet smell can be casual and fashionable, louis vuitton outlet sexy bedrock. Abercrombie Fitch is taking the United States, Southern California style. West has a deep imprint

cheap cirque du soleil o tickets29 Sep 11

Great reserve on Bandwidth, Flash and the learning curve.. I have learnt much more info and got knowledge from this post.cheap cirque love tickets

medical assistant schools5 Oct 11

I am happy to see this post. It is really nice and useful for me. From many days i am searching for this type of article. This is a good post and is awesome..

fake Oakley sunglasses12 Oct 11

Fantastic looking site! I have a site as well but unfortunately I’m not very good with design and other computer (tech) related stuff, but would like to make my theme a bit more custom as well. Could you refer me to your designer please? Thank you so much, like this website fake Oakley sunglasses, hottle

boys t shirt15 Oct 11

You should check this SEO site out

[…] Wonderful story, reckoned we could combine a few unrelated data, nevertheless really worth taking a look, whoa did one learn about Mid East has got more

frisörlärling17 Dec 11

frisörlärling

[…]8 We absolutely love your blog and find the majority of your post’s to be jus 84[…]

New Hampshire Wedding Venues23 Dec 11

Right now this particular truly clarifies a great deal. I usually had been asking yourself, the reason why the actual mosaic appears various so frequently as well as We had been usually looking at the actual WEB ADDRESS, perplexed it had been proper.
Many thanks with regard to cleaning this particular secret.

new era caps23 Dec 11

Not long ago i came across your article and possess already been examining along. I would like to convey my love of your writing talent in addition to capability to make readers examine in the first place on the end. I would like to read more modern threads and also to write about my feelings together with you.

I've said that least 2568542 times25 Dec 11

tb2568542@2568542

I’ve said that least 2568542 times.

Best Heart Rate Monitor Watch31 Dec 11

I am happy to find this post very useful for me, as it contains lot of information. I always prefer to read the quality content and this thing I found in you post. Thanks for sharing.

Robb1 Jan 12

Award winner

That blog post was so good. I hereby award you the Blogging Silver Star 2011.

Robb1 Jan 12

Must Read Contribution

The sharing is greatly commended by me.

Pop Up powers4 Jan 12

This is a nice blog. Good clean UI and nice informative blogI have you bookmarked to check out new stuff you post

Cheap Retail Stock5 Jan 12

If easy and readable sentences and authentic information is combined together, then blog will certainly amazed you This blog help me out otherwise I don’t know how much time I have to spend for getting right information

Commercial Removals Coventry6 Jan 12

Simple, useful and readable blog is hardly found. But after reading this blog I can only say that this one of the highly informatics blogs that I have ever read I have really enjoyed reading this blog

Panini Adrenalyn XL9 Jan 12

It is a herculean task to get authentic and informatics blog but this blog seems highly reliable because information available on this blog is very realistic The principle aim of this blogger is to inform and educate the people regarding products and services and this blog has described everything in the best possible manner

Heat Presses9 Jan 12

What an amazing blog. I have found this blog very interesting because I have gotten the most read information It is a herculean task to get authentic and informatics blog but this blog seems highly reliable because information available on this blog is very realistic

Best fundamental trading cfd CFD Trading Fundamental Tips On Getting Started.15 Jan 12

Greate…post

I am typically to blogging and i really admire your content. The article has really peaks my interest. I am going to bookmark your web site and preserve checking for brand spanking new information.

Horticulture Equipments16 Jan 12

What an amazing blog. I have found this blog very interesting because I have gotten the most read information I can only say that this one of the highly information blogs that I have ever read

agria bra kattforsakring16 Jan 12

agria bra kattforsakring

[…]0 Do you mind if I quote a few of your articles as long as I provide credit a nb[…]

salja guld online17 Jan 12

salja guld online

[…]x After study just a few of the blog posts on your web site now, and I actual mn[…]

soccer betting tips17 Jan 12

It is good to

have an end to journey toward; but it is the journey that matters, in the end.

Panasonic Voicemail System19 Jan 12

This blog is a great combination of suitable and useful information and well-written sentences that will certainly entice your sense and update you about new happening And this blog has everything including useful information and clear sentences that help reader in understanding and getting information easily

Aluminium Scaffold Beams19 Jan 12

The best blog always serves information regarding products ad services after making confirmation. Perhaps Blogger is highly knowledgeable that is the reason information There are very few blog like this one I have read.

Scaffold Ladder Hatch19 Jan 12

This is one of the highly informatics and attractive blogs that has not only educated also informed me in a very effective manner. There are very few blog like this one I have read This is one of the highly informatics and attractive blogs that has not only educated also informed me in a very effective manner. There are very few blog like this one I have read

Publishing company24 Jan 12

The best blog always serves information regarding products ad services after making confirmation. Perhaps Blogger is highly knowledgeable that is the reason information that I have read here is genuine and helpful

European Standard Gas Hoses25 Jan 12

This one of the highly realistic and informatics blog I have ever read. Every bit of information that I have read seems very authentic and genuine that has high volume of visitors

Leave a comment