Please, explain me every part of this code cause I am a beginner!! | Sololearn: Learn to code for FREE!
+ 1

Please, explain me every part of this code cause I am a beginner!!

code- <!DOCTYPE HTML> <html> <head> <script> function allowDrop(ev) { ev.preventDefault(); } function drag(ev) { ev.dataTransfer.setData("text", ev.target.id); } function drop(ev) { ev.preventDefault(); var data = ev.dataTransfer.getData("text"); ev.target.appendChild(document.getElementById(data)); } </script> </head> <body> <div id="box" ondrop="drop(event)" ondragover="allowDrop(event)" style="border:1px solid black; width:200px; height:200px"></div> <img id="image" src="sample.jpg" draggable="true" ondragstart="drag(event)" width="150" height="50" alt="" /> </body> </html>

7th Jul 2017, 11:16 AM
sushant
sushant - avatar
1 Odpowiedź
0
A very easy and good explanation is already provided by the sololearn in Html 5 drag and drop section without connecting it to JavaScript. Read it carefully! But for core understanding I recommend you to learn the basics of JavaScript. P.S. I am a beginner as well but I understood the explanation given by sololearn without any basics of JavaScript.
26th Jul 2017, 7:55 PM
Kshitij
Kshitij - avatar