I have a main page with two internal pages.
Each time I attach events on each
$(document).("pageshow","pageXXX",function(){
alert("This is a test")
})
The alert gets fired twice on the main page, also, when I call the internal pages the custom actions are performed for that page, but also the alert fired by the pageshow on the main page is also fired too.
I tried to use pagecreate instead using pageshow but it doesn't likes to me because it is fired just 1 time once the page is loaded, and I need events being fired each time the page is shown.
Is it possible that you are missing the "#" symbol? Is pageXXX the id?
You can try using "#pageXXX", like this:
Hope helps!