Firefox maintains state when you return, which is very convenient on heavy DHTML pages (if you created a dialog, for example, this dialog will still be there when you return). You just need to consider this in your code; for example, you can try adding an onready handler that adds a βblankβ class to all input elements, for example.
$(function() { $("INPUT").addClass("unfilled"); });
source share