You could achieve this with HTML localStorage. Here's an example:In
article A with the navto link to article B: Click
me function navtoHandler(strNavToUrl, strCustomParam) { //
sets the parameter for "param1" in HTML localStorage
localStorage.setItem('param1', strCustomParam); // redirect the window
using the navto window.location.href = 'navto://' + strNavToUrl; }
In article B (with article name 'xxarticlenamexx'): // wait
until the DOM is ready $(document).ready(function() { // makes sure that
the code is loaded everytime and not cached in iOS window.onAppear =
function() { if (localStorage.getItem('param1') === null ||
localStorage.getItem('param1') === '') { // the "param1" is empty,
should ignore } else { // there is a value for "pa...