Keyboard navigation on my slickgrid is working great, but when the page loads, the user has to click on the grid to get the up and down arrows to start navigating the rows, which defeats the purpose. How can I set focus to the control on page load?
I tried:
$('#id_of_container_div').focus();
$('.slick-row:first').focus();
No dice :/
Answer: