jQuery Mobile: Sending data from one page to the another


To pass values, let us say our <a> is the following, with page new.html,

<a href="new.html?structure='123'">Structure</a>

The JS will be:

$( document ).on( "pageinit", "#new", function( event ) {
   var myParam = $(this).data("url").split("?")[1];
   myParam = parameters.replace("structure=","");
   alert(myParam);
});

Updated on: 29-Jan-2020

142 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements