Hi, I need to have a slightly different HTML element in IE7 than the rest, here is what I have so far:
<p>
<label> </label>
<!--[if IE 7]>
<span class="progressIndicator" style="display: none;"></span>
<button type="submit" class="submit" value="" id="qsubmit">SEND</button>
<![endif]-->
<span class="progressIndicator" style="display: none;"></span>
<button type="submit" class="submit" value="" id="qsubmit"> </button>
</p>
But this just displays the button twice, one with the correct value, and one that doesn't work as desired.
What's the correct way to replace this HTML element for IE7 only?
I would prefer not to browser sniff.
Thanks :)