Oh yeah, first try, baby!
<script>if(_PAGENUM_>10){document.getElementById(" pagenum").innerHTML = "" + (_PAGENUM_);}</script>
edit: The above code inserts no page numbers until page 11. I also wanted to omit page numbers on two other pages later, so I did it like this:
<p id="pagenum" style="text-align:center;"></p><script>if(_PAGENUM_>10 && _PAGENUM_!=15 && _PAGENUM_!=81){document.getElementById("pagenum"). innerHTML = "" + (_PAGENUM_);}</script>
Last edited by Books987; 01-25-2015 at 01:10 AM.
|