I am making the products page for one of my sites, and firefox keeps giving me the error it can't find the ID I am requesting. Every other browser works fine except for firefox.
<form mehtod="post">
<input type="text" onclick="SelectAll(this.id)' onkeypress="return isNumber(event)" maxlength=2 style="width:3em; text-align:center;" id="quantity_ <?php echo $fetch['id']; ?>" value="1">
<a onclick="Add(<?php echo $fetch['id']; ?>,quantity_<?php echo $fetch['id']; ?>.value);" href="#">Add</a>
</form>
Im lost to why this will not work I have tried everything.