InterviewSolution
Saved Bookmarks
| 1. |
How to lazy load images?(a) Remove the rel attribute(b) Remove the src attribute(c) Make rel = src(d) Make src = rel |
|
Answer» Correct answer is (b) Remove the src attribute Best explanation: The way we would lazy load images would be to alter the HTML of the page to remove the contents of the src attribute of each image. We could just move the contents of the src attribute to an attribute in the image tag of our own design, maybe the rel attribute. |
|