InterviewSolution
Saved Bookmarks
| 1. |
Which property holds a DataTransfer object that contains information about the data being transferred and the formats in which it is available?(a) dataTransfer(b) transferData(c) dataExchange(d) exchangeData |
|
Answer» The correct option is (a) dataTransfer For explanation: The property, dataTransfer, holds a DataTransfer object that contains information about the data being transferred and the formats in which it is available. The DataTransfer object is used to hold the data that is being dragged during a drag and drop operation. |
|