How do I make mousetrap launch intro.js guided tour?
SHIFT + ? will ... <a href="javascript:void(0);" onclick="startIntro();">launch tour</a>
This is the code I used to achieve results:
<script type="text/javascript">
Mousetrap.bind(["?"], function(e) {
startIntro();
});
</script>