Skip to content

Instantly share code, notes, and snippets.

@jbd91
Created September 16, 2019 15:08
Show Gist options
  • Save jbd91/340e60919121246afae8b88f6313ef35 to your computer and use it in GitHub Desktop.
Save jbd91/340e60919121246afae8b88f6313ef35 to your computer and use it in GitHub Desktop.
jQuery Focus example
// On click focus element, integrated with the funcitonality to render hidden slick slider.
$('a[data-toggle="tab"]').click(function () {
setTimeout(function () {
$('.grid--map-mobile-slider').slick('setPosition');
}, 200);
$(this).first().focus();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment