Reputation: 44066
<a href="/selection"><input type="button" class="big" value="Somewhere"></a>
because in IE it doesnt click....any ideas why..all other browsers seem fine
Upvotes: 4
Views: 97
Reputation: 9106
It's invalid HTML — an <input>
cannot be as a descendant of an <a>
element:
Source: http://jsbin.com/iyuxeb
Upvotes: 9