READ Free Dumps For Microsoft- 70-480
Question ID 14974 | You are developing an application in HTML5. The application contains the following HTML
markup.
You need to ensure that all of the links referencing domain names ending in .org are
displayed in red text.
What should you use?
|
Option A | a JSON parse function
|
Option B | a CSS attribute selector
|
Option C | a CSS pseudo-element
|
Option D | a JSON stringify function.
|
Correct Answer | C |
Explanation
Question ID 14975 | You develop an HTML application that is located at www.adventure-works.com.
The application must load JSON data from www.fabrikam.com.
You need to choose an approach for loading the data.
What should you do?
|
Option A | Design a REST URI scheme with multiple domains.
|
Option B | Configure Cross-Origin Resource Sharing (CORS) on the servers.
|
Option C | Load the data by using WebSockets.
|
Option D | Use the jQuery getJSON method.
|
Correct Answer | B |
Explanation Explanation: * Cross-origin resource sharing (CORS) is a mechanism that allows Javascript on a web page to make XMLHttpRequests to another domain, not the domain the Javascript originated from. Such "cross-domain" requests would otherwise be forbidden by web browsers, per the same origin security policy. CORS defines a way in which the browser and the server can interact to determine whether or not to allow the cross-origin request.[2] It is more powerful than only allowing same-origin requests, but it is more secure than simply allowing all such cross-origin requests. * You must use Cross Origin Resource Sharing It's not as complicated as it sounds...simply set your request headers appropriately...in Python it would look like: self.response.headers.add_header('Access-Control-Allow-Origin', '*'); self.response.headers.add_header('Access-Control-Allow-Methods', 'GET, POST, OPTIONS'); self.response.headers.add_header('Access-Control-Allow-Headers', 'X-Requested-With'); self.response.headers.add_header('Access-Control-Max-Age', '86400');