Cross-Origin Attribute in HTML5



Yes, the official specification states cross-origin attribute as:

The crossorigin attribute is a CORS settings attribute. Its purpose is to allow
images from third-party sites that allow cross-origin access to be used with canvas.

You can use it to solve JavaScript errors like to log js errors:

if (securityOrigin()->canRequest(targetUrl)) {
   msg = myErroe;
   line = myLineNumber;
   source = sourceURL;
} else {
   msg = "Error!";
   source = String();
   line = 0;
}
Updated on: 2020-01-29T10:23:18+05:30

182 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements