Matt Elhotiby
Matt Elhotiby

Reputation: 44066

Is this valid html

<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

Answers (1)

rjb
rjb

Reputation: 9106

It's invalid HTML — an <input> cannot be as a descendant of an <a> element:

HTML Validator Screenshot

Source: http://jsbin.com/iyuxeb

Upvotes: 9

Related Questions