When using normal CSS stylesheet I just use such code:
display:inline;
display:block\9;
and it works instantly.
But when I got the same code inside JavaScript it just doesn't work making whole input field invisible. How the \9 hack for IE8 should be entered ?
inp.style.display="inline";
inp.style.display="block\9";