- Tags:
- Show more
- Pages:
- 1
- Words:
- 275
Drag-and-Drop Summary Name Institutional affiliation Abstract Drag and Drop is a major feature web feature supported by HTML 5. The feature is supported in Firefox 3.5, Chrome and Safari. The creation of a convenient feature that would enable users to create web builds with drag and drop feature is considered as a major feat for programmers. Moreover, drag and drop features have been linked to the ability to enhance cloud content management as well as enhance developer capacities to create web builds. The integration of the drag and drop features implies that users can directly drag files from their desktops to the browser in use. It minimizes the need for creating several codes to call a feature on a browser. The summary offers a comprehensive explanation of how a user may use the drag and drop feature to create a web build. It explains some of the inputs that a programmer must take into account to enable them build a functioning drag and drop feature with other features such as drag over and drag enter to create an interactive web page. Keywords: drag and drop, web build, HTTP, browser Drag-and-Drop Summary The process of creating an object that can be dragged on a web browser is simple. The first step is to set the attribute of dragging to “true”. Setting the feature true will enable the programmer move about any elements including files, links images or DOM nodes. A typical code to enable dragging would be as follows: div id="row"> <div class="row" draggable="true"><header>A</header></div> <div class="row" draggable="true"><header>B</header></div> <div class="row"
Leave feedback