Hi !
This will work if your Project is a Multi-page design.
On each of your Buttons add this custom Js on "Click " in Properties Tab
codevar button = $(this).attr('dsid');
localStorage.setItem('lastbutton', button);
Tiggzi.navigateTo('pagebuttonClickToGoTo',{ transition: 'none'});/code
Now add this custom Js to the screen(with the buttons) using "Page Show"
codevar button = localStorage.getItem('lastbutton');
Tiggzi(button).focus();/code
If a single page template design. Use this code on "Page Show" instead..
codevar button = localStorage.getItem('lastbutton');
setTimeout(function() {Tiggzi(button).focus();},500);/code
Now when the user goes to this page it will jump to last clicked button !
Hope it works for you.
Regards.