Quick limited solution for "Status Bar Spoofing Weakness" for Internet Explorer

Solving "Status Bar Spoofing Weakness" for Internet Explorer.

I reccomend to hide <a href="[URL]"><input type="image"></a> with using user stylesheet.
In usual way of HTML, <a href="[URL]"><input></a> is strange. I think it is OK that you can't see this element.
After Microsoft solved this problem officially, remove this stylesheet.
Solution:
Add following stylesheet to your user stylesheet. This stylesheet hides <input type="image"> element inside <a>.

	form a input{
	display:none ! important;
	}