Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

mutsuyuki
mutsuyuki
Offline

Badges

Badges
3

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
3

Posts

Posts
1

Discussions

Discussions
0

Questions

Questions
1

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by mutsuyuki
Customize the badges you want to showcase on your profile
Re: Can I get GET Parameter in DPS? - Adobe Experience Manager Mobile 09-02-2016
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...

Views

620

Likes

3

Replies

0
Likes from