internet explorer - Html Button Not working in IE,But work in other browser -


how work in internet explore. it's work in other browser.but won't work in ie.

<div class="cashbook_wrapper">      <a href="new_reept.html">          <input name="" type="button" value="new receipt" class="btn" />      </a>  </div> 

your html invalid. content model of <a> element is:

transparent, there must no interactive content descendant.

your input interactive content.

if want link, use link (not link , button). if want button, use css.


Comments