QUOTE(Mindapolis @ Apr 17 2012, 02:45 AM)

The reason I'm asking is I'm developing a site that has a paypal buy now button and the button displays fine in firefox but not in IE.
We understood that. Fix it so it works in IE.
QUOTE(Mindapolis @ Apr 17 2012, 03:01 AM)

i'm working with the validator right now and what does this error message mean?
Line 363, character 50:
... data: "petName2=<?=$petName2;?>&age2=<?=$age2;?>&breed2=<?=$ ...
CODE
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
function AddDog() {
if (document.checkOut.moreDogs.checked) {
$.ajax({
type: "POST",
url: "addDogDetails.php",
data: "petName2=<?=$petName2;?>&age2=<?=$age2;?>&breed2=<?=$breed2;?>&nutritionalNeeds2=<?=$nutritional_needs2;?>&specialInstructions2=<?=$special_instructions2;?>",
success: function(rData) {
$('#order tr#DgLast').after(rData);
}
});
}
else {
$('.NewDogDetails').remove();
}
}
</script>
The validator chokes on your JS. It doesn't validate JS, it sees it as peculiar HTML. Use an external script file.