Go to next page link

Hi there,
There is a “go back” or “jump to page” but is there a “go to next page”?
Thanks !

Hi at @TaraK there isn’t on the Readymag builder, certainly worth suggesting on this thread What features does Readymag lack the most?

You could use code injection to achieve this affect. Nice thread here with a possible solution. html - Javascript: Go to previous/next page - Stack Overflow

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>Example</title>
</head>
<body>
  <input type="button" id="btnPrev" value="Previous">
  <input type="button" id="btnNext" value="Next">
<script>
  (function() {
    "use strict";

    var page = 1;
    var pageCount = 3;

    display("Starting page: " + page);
    document.getElementById("btnPrev").onclick = function() {
      page = ((page + pageCount + 1) % pageCount) + 1;
      display("previous, page now " + page);
    };
    document.getElementById("btnNext").onclick = function() {
      page = (page % pageCount) + 1;
      display("next, page now " + page);
    };

    function display(msg) {
      var p = document.createElement('p');
      p.innerHTML = String(msg);
      document.body.appendChild(p);
    }
  })();
</script>
</body>
</html>

Thanks for this! This helps