Everyone agrees that less DOM elements means better page performance. It means better javascript performance, especially in older browsers.
But where are the best places to look to reduce DOM elements? What are the common culprits that you guys have come across that are easy fixes to get that number down?
use:
in stead of:
… when possible, that is. Sometimes you need the additional
divfor layout purposes. But when not necessary, don’t use it.