jquery mobile pageshow function firing twice

241 Views Asked by At

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.

1

There are 1 best solutions below

2
On

Is it possible that you are missing the "#" symbol? Is pageXXX the id?

You can try using "#pageXXX", like this:

    $(document).("pageshow","#pageXXX",function(){
       alert("This is a test")
    })

Hope helps!