'clearData()' Example : clearData : Javascript Methods : JavaScript Reference examples (example source code) Organized by topic

JavaScript Reference
C++
PHP


JavaScript Reference  »  Javascript Methods   » [  clearData  ]   
 



'clearData()' Example

    
<html>
<body>
<button onclick="clipboardData.setData('Text',document.selection.createRange().text);">
Copy
</button>
<button onclick="myText.value = clipboardData.getData('Text');">Paste</button>
<button onclick="clipboardData.clearData('Text');">Clear clipboard</button>
<p>This is some sample text for you to copy.</p>
<textarea id="myText" style="width:600; height:100"></textarea>
</body>
</html>

    
      
      
Related examples in the same category
1.  'clearData()' Syntax, Parameters and Note
2.  'clearData()' is applied to
























Home| Contact Us
Copyright 2003 - 07 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.