When you have to use the same selector many times, it is much better to cache the returned element(s) in a variable. This will avoid multiple scans and improve performance. As an example: can be written as: This way the browser only has to scan the document once rather than three times. Even though the […]