Limit list view to just three items

I wanted to display 3 items from the list view but no more so I built a view with the list and set it to three columns and then used this jquery.

$(document).on('knack-view-render.view_403', function (event, view, data) {
$("#view_403 div.kn-list-content .kn-list-three-column:not(:first)").hide();
});

Where view_403 is whatever view you are working in.

Well, I didn't even see that Brandon. Thanks for the advice. That is way easier than what I did. I am starting to see there is a ton of stuff that knack is capable of that I am not yet aware of.

You can also set the limit in the Data Source tab to 3.