I have the following href
that I needed to look like a button
<td><a href="/link.jsp" target="_blank">
<input type="submit" value="Log in"></input></a></td>
The problem is that IE11
does not open the link at all. It does not react to it. All of the other browsers do.
you should get rid of the input type submit (it's meant to submit a form). Wrap your anchor around a button image. See example below:
<a href="http://www.yahoo.com" target="_blank">
<img src="http://imageurl" />
</a>