Valid Web-Development-Applications Dumps shared by ExamDiscuss.com for Helping Passing Web-Development-Applications Exam! ExamDiscuss.com now offer the newest Web-Development-Applications exam dumps, the ExamDiscuss.com Web-Development-Applications exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com Web-Development-Applications dumps with Test Engine here:
Which global attribute prepares an element for input when a page loads?
Correct Answer: D
> "The `autofocus` global attribute specifies that the element should automatically get focus when the page loads." > > This is commonly used on input elements to direct the user's cursor to a particular field immediately. Example: ```html <input type="text" autofocus> ``` References: * MDN Web Docs: autofocus attribute * HTML Living Standard: Global attributes ---