I have a horizontal scrollable div with list items. It looks like below. I want the list to be autofocused when the user clicks on any list item. The list item is currently in place. Is there a way in Javascript or jQuery to autofocus a list item?
Below are the CSS that I used to create this horizontal scroll div
on ul
white-space: nowrap;
overflow-x: auto;
on li
display: inline-block !important;
float: none;

source
share