I have managed to make a DIV tag invisible in JavaScript by setting the display to none and the visibility to hidden. It can be achieved with this class also:
.i
This would probably work:
.invisible { position: absolute; left: -9999px; }
EDIT: I would take a look at the common helpers in the HTML5 Boilerplate code to explore other ways of making things disappear.