Jacob Arnold

Results 2 comments of Jacob Arnold

Same here! I was hoping I could programmatically click() on one of the .js-tab-trigger anchors, but it doesn't seem to work.

I ended up doing something quite similar using jQuery: ``` $(".js-tabs").each(function (index) { var targetTab = 0; if (window.location.hash) { var hash = window.location.hash.substring(1); $(this).find('.js-tabs-panel').each(function (i) { if ($(this).attr('id') ==...