READ Free Dumps For Microsoft- 70-480
Question ID 14944 | You create an HTML5 application that includes JavaScript. The application performs |
Option A |
* From Scenario: Do not allow other DOM elements to receive the event. So: bubbles: false * From scenario: Allow the event to be cancelled. So: cancellable: true * From scenario: The webpage must contain an HTML element named ordersListing that will receive the custom event notification. * Events which are designated as bubbling will initially proceed with the same event flow as non-bubbling events. The event is dispatched to its target EventTarget and any event listeners found there are triggered. Bubbling events will then trigger any additional event listeners found by following the EventTarget's parent chain upward, checking for any event listeners registered on each successive EventTarget. This upward propagation will continue up to and including the Document. EventListeners registered as capturers will not be triggered during this phase. The chain of EventTargets from the event target to the top of the tree is determined before the initial dispatch of the event. If modifications occur to the tree during event processing, event flow will proceed based on the initial state of the tree. Note: * Ajax (an acronym for Asynchronous JavaScript and XML) is a group of interrelated web development techniques used on the client-side to create asynchronous web applications. With Ajax, web applications can send data to, and retrieve data from, a server asynchronously (in the background) without interfering with the display and behavior of the existing page. Data can be retrieved using the XMLHttpRequest object. Despite the name, the use of XML is not required (JSON is often used instead), and the requests do not need to be asynchronous. |
Correct Answer | A |
Question ID 14945 | You develop an HTML application that calls a web service to retrieve JSON data. The web |
Option A |
You can access object properties in two ways: objectName.propertyName or objectName[propertyName] |
Correct Answer | A |