Html miscellaneous
- Which of the following property is used to determine which drag operation was desired?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: A
When the user finishes dragging an element, dragend is occurred. During the drop event, you should retrieve that data that was dropped from the event and insert it at the drop location. One can use the dropEffect property to determine which drag operation was desired.
- ______________ should include data of two types; the first should be the URL using the type text/uri-list, and the second is the URL using the text/plain type.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: A
Dragging Links should include data of two types; the first should be the URL using the type text/uri-list, and the second is the URL using the text/plain type.
- A listener for the dragenter and dragover events are used to indicate valid drop targets, that is, places where dragged items may be dropped.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: B
The dragover event is fired as the mouse is moving over an element when a drag is occurring. Much of the time, the operation that occurs during a listener will be the same as the dragenter event. When draggable element enters a drop target then dragenter event is occurred.
- _____________ and elements in a document may be dragged using the application/x-moz-node type.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: A
Dragging Nodes and elements in a document may be dragged using the application/x-moz-node type.
- Which of the following is not the benefit of cache application?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: A
Application cache can be helpful in so many ways like we can browse offline, as the cached resources are at local level hence they load at faster speed, it also reduces the load of the server. Asynchronous is one of the problems with the use of application cache due to this the resources which are not required like JavaScript or images will also be downloaded.