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
Post a Comment