I'm showing tooltips like this
$(clickedElement).append('<span id="activeHelpTip" class="helpTip">Loading help...</span>');
$('#activeHelpTip').remove();
A colleague suggested that on page load I append ALL possible tooltips with visibility none, and show/hide them on demand.
What's the difference? Who cares?
Edit: Is it relevant that tooltips are provided by an ajax service?