$(document).ready(function () {
    $('#gold').submit(function () {
		    if ($('#productQuantity').val() < 1) {
				    alert('Quantity must be more than 0.');
						$('#productQuantity').focus();
						return false;
				}
				if ($('#price').val() < 1) {
				    alert('Price must be more than 0.');
						$('#productQuantity').focus();
						return false;
				}
				if ($('#role').val() == '') {
				    alert('Character Name must be filled.');
						$('#role').focus();
						return false;
				}
		});
});