I have the following div:
<div id="tutorial" onclick="console.log('Triggered tutorial');"></div>
I want to target this div via the URL, by navigating like this:
mysite.com/mypage.html#tutorial
However, loading the page to this div ID doesn't trigger the onclick event.
What is the best way to accomplish this?