$(document).ready(function() {
$(".submits").keyup(function(enter) {
if (enter.keyCode == 13) { //enter
wilks();
}
});
$("#findValue").click(function(enter) {
enter.preventDefault();
wilks();
});
});
var bodyweight = $('#bodyweight').val();
var liftedweight = $('#liftedweight').val();