42.1k views
2 votes
​ The _____ attribute tells a browser to parse the HTML and JavaScript code together, only pausing to process the script before returning to the HTML file.

User Piko
by
7.1k points

1 Answer

5 votes

Answer:

"async" attribute

Step-by-step explanation:

the async attribute is used on the html script tag, it is a Boolean attribute indicating that the browser should, if possible, load the script asynchronously and then parse it as soon as it’s downloaded.

User Skim
by
6.6k points