Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature currently requires accessing the site using the built-in Safari browser.
Normal
Absolutely you can. Set session storage, see if it exists, if so perform popup. If not do noting.Example script initial visit.[CODE=javascript]$(document).ready(function() { sessionStorage.setItem('data', 'dataArr');});[/CODE]Example call. From 2nd page or returning visit.[CODE=javascript]$(document).ready(function() { let dataForPopup = sessionStorage.getItem('data') if (dataForPopup) { // open popup Googlebot cannot store session storage so this isn't performed. }});[/CODE]Edit: fix shortcode formatting errors.
Absolutely you can. Set session storage, see if it exists, if so perform popup. If not do noting.
Example script initial visit.
[CODE=javascript]$(document).ready(function() {
sessionStorage.setItem('data', 'dataArr');
});[/CODE]
Example call. From 2nd page or returning visit.
let dataForPopup = sessionStorage.getItem('data')
if (dataForPopup) {
// open popup Googlebot cannot store session storage so this isn't performed.
}
Edit: fix shortcode formatting errors.