hyytyg
Cyber Analyst
2
MONTHS
2 2 MONTHS OF SERVICE
LEVEL 1
100 XP
In this tutorial we will create a Store Element Value When Drag using JavaScript. This code will dynamically store an element value when drop in the form inputs. The code use JavaScript drag and drop feature in order to store element value by providing an id in the ondragstart() event. A user-friendly program so that you can modify and understand it without an ease.
We will be using JavaScript as a server-side scripting language that interpret a program to extend a whole new level of HTML experience. A scripting language that use in different ways that provide a whole level of experience when visiting a website.
Getting started:
First you have to download bootstrap framework, this is the link for the bootstrap that I used for the layout design https://getbootstrap.com/.
The Main Interface
This code contains the interface of the application. To create this just write these block of code inside the text editor and save this as index.html.
Creating the Script
This code contains the script of the application. This code will store element value when drop the target zone. To do this just copy and write these block of codes inside the text editor, then save it as script.js inside the js folder.
There you have it we successfully created a Store Element Value When Drag using JavaScript. I hope that this simple tutorial help you to what you are looking for. For more updates and tutorials just kindly visit this site. Enjoy Coding!
Download
We will be using JavaScript as a server-side scripting language that interpret a program to extend a whole new level of HTML experience. A scripting language that use in different ways that provide a whole level of experience when visiting a website.
Getting started:
First you have to download bootstrap framework, this is the link for the bootstrap that I used for the layout design https://getbootstrap.com/.
The Main Interface
This code contains the interface of the application. To create this just write these block of code inside the text editor and save this as index.html.
- <!DOCTYPE html>
- <html
lang
=
"en"
>
- <head
>
- <meta
charset
=
"UTf-8"
name
=
"viewport"
content
=
"width=device-width, initial-scale=1"
/
>
- <link
rel
=
"stylesheet"
type
=
"text/css"
href
=
"css/bootstrap.css"
/
>
- </
head
>
- <body
>
- <nav class
=
"navabr navbar-default"
>
- <div
class
=
"container-fluid"
>
- <a
class
=
"navbar-brand"
href
=
"https://sourcecodester.com"
>
Sourcecodester</
a
>
- </
div
>
- </
nav>
- <div
class
=
"col-md-3"
></
div
>
- <div
class
=
"col-md-6 well"
>
- <h3
class
=
"text-primary"
>
JavaScript - Store Element Value When Drag</
h3
>
- <hr
style
=
"border-top:1px dotted #ccc;"
/
>
- <div
class
=
"col-md-6"
>
- <div
class
=
"alert alert-info"
>
Movie List</
div
>
- <h4
id
=
"Iron Man"
draggable=
"true"
ondragstart=
"drag(event)"
>
Iron Man</
h4
>
- <h4
id
=
"Frozen 2"
draggable=
"true"
ondragstart=
"drag(event)"
>
Frozen 2</
h4
>
- <h4
id
=
"Hotel Transylvania"
draggable=
"true"
ondragstart=
"drag(event)"
>
Hotel Transylvania</
h4
>
- <h4
id
=
"Venom"
draggable=
"true"
ondragstart=
"drag(event)"
>
Venom</
h4
>
- <h4
id
=
"Aladin"
draggable=
"true"
ondragstart=
"drag(event)"
>
Aladin</
h4
>
- </
div
>
- <div
class
=
"col-md-6"
>
- <div
class
=
"form-group"
>
- <input
class
=
"form-control"
type
=
"text"
id
=
"data"
ondrop=
"drop(event)"
ondragover=
"dragOver(event)"
readonly
=
"readonly"
/
>
- </
div
>
- <center
><button
class
=
"btn btn-primary"
onclick
=
"storeItems();"
><span
class
=
"glyphicon glyphicon-save"
></
span
>
Store</
button
>
<button
class
=
"btn btn-success"
onclick
=
"reset();"
><span
class
=
"glyphicon glyphicon-refresh"
></
span
>
Reset</
button
></
center
>
- <br
/
>
- <div
id
=
"result"
></
div
>
- </
div
>
- </
div
>
- <script
src
=
"js/script.js"
></
script
>
- </
body
>
- </
html
>
Creating the Script
This code contains the script of the application. This code will store element value when drop the target zone. To do this just copy and write these block of codes inside the text editor, then save it as script.js inside the js folder.
- function
dragOver(
e)
{
- e.preventDefault
(
)
;
- }
- function
drop(
e)
{
- e.preventDefault
(
)
;
- var
data =
e.dataTransfer
.getData
(
"data"
)
;
- document.getElementById
(
'data'
)
.value
=
data;
- }
- function
drag(
e)
{
- e.dataTransfer
.setData
(
"data"
,
e.target
.id
)
;
- }
- function
storeItems(
)
{
- var
data =
document.getElementById
(
'data'
)
.value
;
- if
(
data !=
""
)
{
- document.getElementById
(
'result'
)
.innerHTML
+=
data+
"<br />"
;
- }
- }
- function
reset(
)
{
- document.getElementById
(
'result'
)
.innerHTML
=
""
;
- document.getElementById
(
'data'
)
.value
=
""
;
- }
There you have it we successfully created a Store Element Value When Drag using JavaScript. I hope that this simple tutorial help you to what you are looking for. For more updates and tutorials just kindly visit this site. Enjoy Coding!
Download
You must upgrade your account or reply in the thread to view the hidden content.