208k views
3 votes
You are developing an application that relies on cookies. You need to design the page so that when a user opens the page and cookies are enabled, a cookie is summited to indicate the last time the user visited the site. The page needs to check for cookies. Which event should you use? Question 1 options: onselect onload onchange onclick

User Osman Esen
by
6.9k points

2 Answers

1 vote

Answer:

It is B onload 100%

Step-by-step explanation:

User Knaos
by
8.3k points
4 votes

Final answer:

The correct event to use when designing a webpage to check for cookies and record the last visit time upon page load is the onload event.

This event ensures that the cookie check and setting operations occur after the page is fully loaded and all resources are available.

Therefore, the correct answer is: option 'onload.

Step-by-step explanation:

The onload event triggers when the entire page, including all dependent resources like images and scripts, is fully loaded.

This is the best time to check for cookies because you can be sure that all the elements of the page are available and you can interact with the Document Object Model (DOM) to read or write cookies.

To implement this, you would typically write a JavaScript function that checks for the presence of the cookie and, if not found or if you wish to update it, creates or updates the cookie with the current date and time.

This function should then be called during the window's onload event. Example:

window.onload = function() {
if (navigator.cookieEnabled) {
// Code to check for the cookie
// Code to set or update the cookie
} else {
// Handle the situation when cookies are not enabled
}
};
User Cantlin
by
8.0k points