If you want to move data in and out of the clipboard on a Windows platform from within the MSIE browser, this property will yield a reference to a clipboardData object that encapsulates the clipboard contents.
// Example of how to use the clipboard object supplied by // Martin Honnen. clipboardData.setData('Text', 'All for Kibology'); alert(clipboardData.getData('Text')); clipboardData.clearData(); alert(clipboardData.getData('Text'));
See also: | clipboardData object |
Prev | Home | Next |
Window.clientInformation | Up | Window.close() |
JavaScript Programmer's Reference, Cliff Wootton Wrox Press (www.wrox.com) Join the Wrox JavaScript forum at p2p.wrox.com Please report problems to support@wrox.com © 2001 Wrox Press. All Rights Reserved. Terms and conditions. |