Tag: draggable

  • How to implement drag and drop in HTML5?

    Dragging and dropping content in your html document got easier with HTML5. You just need to mark the element you want to drag as “draggable”, drag it and drop it using some simple javascript. Here are the steps: STEP1: Mark the HTML element to drag as draggable STEP2: Write a javascript function for the event…