I want to add a trigger click on page load, so am having a trigger function:
$("li.vjs-menu-item").eq(2).trigger('click');
It's working fine on Desktops, but it doesn't work with touch devices like Andriod and iPhones. I tried to add touchstart on the same click event:
$("li.vjs-menu-item").eq(2).trigger('touchstart click');
But it doesn't make any sense, so I want to know what is the equivalent trigger call for touch events ?