I have a jquery function:
$("#get-input").keyup(function (event) {
    if (event.keyCode === 13) {
        $("#get-data").click();
    }
});
$("#get-data").click(function (e) {
    var endpoint = $(".get-input").val();
    if ($('#data-display').is('[hidden]')) {
        $('#data-display').removeAttr('hidden');
    }
    $.ajax
        ({
            url: "https://localhost:44398/api/" + endpoint,
            type: 'get',
            success: function (data) {
                $('.formatted-json').text(JSON.stringify(data, null, '\t'))
            }
        });
});
My form:
<form class="form-inline">
                <div class="form-group query-container">
                    <label class="get-lbl pr-2">this is the label</label>
                    <input type="text" class="form-control-lg get-input" placeholder="placeholder" />
                    <input type="button" class="btn btn-orange btn-get" id="get-data" value="submit" />
                </div>
            </form>
This works perfectly when I click the #get-data button. The ajax is hit, and the data is displayed. My issue is that when I hit the enter key, it reloads the entire page. I need the enter key to act the same as if I clicked the button. 
I have tried changing the keyup to keydown and keypress without luck. I have tried changing the .click function to a .submit function on the form instead of the input. I have also wrapped all the JS inside a document ready call, but it still works the same. 
Does anyone have any ideas what I need to do to get this working properly when I press enter?
