Is there a way to make input text inside a link tag works well in IE8? I cannot place the caret inside nor select the text within it.
<a href="#"><input type="text"></a>
I think the reason why I'm trying to do this is not important here, just consider I have no choice of make it work under an <a>
tag. I only have control over what's inside the <a>
tag.
As a solution, I was thinking about some JQuery DOM manipulation when in IE8 mode but there must be a easier/cleaner way of fixing this "bug".
Thanks