Jump to pages with text links
Mulegoat opened this issue · 0 comments
Mulegoat commented
Hi there
I'm trying to create a simple link to a page outside of the jPages navigation. I see that there is a jump to method using numerical page values using 'parseInt'
$("button").click(function(){
/* get given page /
var page = parseInt( $("input").val() );
/ jump to that page */
$("div.holder").jPages( page );
});
but is there something similar that can be implemented with text strings using split text and an anchor point instead of an input field?