Baby monitors have certainly come a long way! But are you stopping your little one from learning the sleep skills they need by keeping your eyes glued to the monitor any time they're in their cot?
$(document).ready(function() {
$('body').on('click', '[name="checkout"], [name="goto_pp"], [name="goto_gc"]', function() {
if ($('#agree').is(':checked')) {
$(this).submit();
}
else {
alert("You must agree with the terms and conditions of sales to check out.");
return false;
}
});
});