How can I prevent tabbing to tooltips?

In some browsers (but not all) if you have tool tips on your inputs then tabbing between inputs will also tab to the tooltip links. Here's a JavaScript snippet to prevent this: 
Please drag a Load JS action into the On Load event and add this code to it.
window.addEvent('domready', function() {
  $$('div.tooltipimg a').each( function(item) {
    item.setProperty('tabindex', '-1'); 
  });
});
If you are using the Easy Wizard then you can add this tp the Others | JS/CSS Settings | JavaScript Code box