Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

HTML ondragstart Event Attribute

❮ HTML Event Attributes

Example

Execute a JavaScript when the user starts to drag a <p> element:

<p draggable="true" ondragstart="myFunction(event)">Drag me!</p>
Try it Yourself »

Definition and Usage

The ondragstart attribute fires when the user starts to drag an element or text selection.

Drag and drop is a very common feature in HTML5. It is when you "grab" an object and drag it to a different location. For more information, see our HTML Tutorial on HTML5 Drag and Drop.

Note: To make an element draggable, use the global HTML5 draggable attribute.

Tip: Links and images are draggable by default, and do not need the draggable attribute.

There are many event attributes that are used, and can occur, in the different stages of a drag and drop operation:

  • Events fired on the draggable target (the source element):
    • ondragstart - fires when the user starts to drag an element
    • ondrag - fires when an element is being dragged
    • ondragend - fires when the user has finished dragging the element

  • Events fired on the drop target:
    • ondragenter - fires when the dragged element enters the drop target
    • ondragover - fires when the dragged element is over the drop target
    • ondragleave - fires when the dragged element leaves the drop target
    • ondrop - fires when the dragged element is dropped on the drop target

Browser Support

The numbers in the table specify the first browser version that fully supports the event attribute.

Event Attribute
ondragstart 4.0 9 9 3.1 12

Syntax

<element ondragstart="script">

Attribute Values

Value Description
script The script to be run on ondragstart

Technical Details

Supported HTML tags: ALL HTML elements

Related Pages

HTML Tutorial: HTML5 Drag and Drop

HTML Reference: HTML draggable Attribute

HTML DOM Reference: ondragstart Event


❮ HTML Event Attributes
×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
sales@w3schools.com

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
help@w3schools.com

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.