Cloning a page but transition to a separate page (not the directly cloned page)

Cloning a page but transition to a separate page (not the directly cloned page)

Can anyone help me. I have successfully cloned a page but I don't want to transition to it.


https://jsfiddle.net/lammie71/j8w5qwta/192/


As you can see it in the code it changes to the cloned page and works fine:


$.mobile.changePage('#page_Result_'+a6, {transition: "slide", reverse: false, changeHash: false});

Although this works fine, I only want to clone the page at this stage and not transition to it. Instead I want to transition to the page #page_Asda.

$.mobile.changePage('#page_Asda', {transition: "slide", reverse: false, changeHash: false});

The flow should be as follows:

Click on Duplicate Page Link > Duplicate Page (But Not Display) > Transition to page_Asda.

I can’t fathom it - thanks in advance.