'onDrop' Example : onDrop « Event Handlers Reference « JavaScript Reference

Home
JavaScript Reference
1.Event Handlers Reference
2.Javascript Collections
3.Javascript Methods
4.Javascript Objects
5.Javascript Properties
JavaScript Reference » Event Handlers Reference » onDrop 




'onDrop' Example

    
<html>
<head>
<script language="JavaScript">
<!--
function function1() {
  msg = 'on' + event.type + ' event fired by ' + '"' + event.srcElement.id + '"'
  alert(msg+"\nPress Enter twice to close this window"

--> 
</script>
</head>
<body bottommargin=150>
  <p>Source object: 
<input id="sourceObject" size=50 value="The text to Drag" ondrop="function1()">
<br>
  </p>
  <p>Drop selected text into the following text field.</p>
  Target object: 
<input id="targetObject" size=50 value="Drag destination element"
</body>
</html>

    
      
      














Related examples in the same category
1.'onDrop' Syntax and Note
2.'onDrop' Properties
3.'onDrop' is applied to
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.