<?xml version="1.0" encoding="utf-8"?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Moving text between email inputs</title>
<script type="application/ecmascript">
function check()
{var input = document.querySelectorAll('input');
document.querySelector('p').firstChild.nodeValue = (input[0].value == '' && input[1].value == '[email protected]')?'PASS':'FAIL';}
</script>
</head>
<body onload="document.querySelector('input').select()">
<p>Drag selected email to the blue box. Copy of selection should end up in the blue box once you drop it there.</p>
<p><input type="email" value="[email protected]"/></p>
<p><input ondragenter="event.preventDefault()" ondragover="event.preventDefault();event.dataTransfer.effectAllowed = 'move'" ondrop="window.setTimeout('check()',100)" type="email" placeholder="Drop selection here"/></p>
</body>
</html>