jquery - Linking an ios app from Veeva iRep slide on an iPad -


i want link app button veeva irep slide. have app url in format this

com.abc.xyz

using jquery, trying link app button.

$('#b1').on('click',function(){    window.location = "irep://com.abc.xyz";    }); 

as per veeva documentation, have tried out

$('#b1').on('click',function(){    window.location = "veeva://com.abc.xyz";    }); 

also have tried out this, i'm not sure this.

$('.app_test3').on('click',function(){     window.location = "appname://com.abc.xyz"; }); 

please note, app not installed on ipad. work? need guidance on one.

the app needs installed , have url scheme registered, e.g. appb provide links appb://some/deep/link.

then can use scheme in app link app b, opened (if it's installed). link passed app b can take appropriate actions.

another thing can link itunes store. open app store app showing app linked not directly open it, if it's installed.


Comments

Popular posts from this blog

c++ - Difference between pre and post decrement in recursive function argument -

php - Nothing but 'run(); ' when browsing to my local project, how do I fix this? -

php - How can I echo out this array? -