If you want to navigate Prev/Next anchor with your Chrome between different anchors in the same page of Confluence, there is a trick to do that with a Javacript Macro in the Confluence Page.

Insert into the page this piece of code, that’s all!


<script>
window.onhashchange = function () {
if (window.innerDocClick) {
//Your own in-page mechanism triggered the hash change
} else {
//Browser back or forward button was pressed
window.location.href = window.location.href
}
};
</script>

Posted by:.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s