Function to be executed on home page only

43 views Asked by At

I have a multi page jquery mobile document. Structure something like.

Page A

Page B

Page C

I know I can execute function on every pageshow by using pageshow but when u link back to page A say by #PageA in browser it leaves main URL only. So I want to execute a function when user is on mydomain.com

1

There are 1 answers

0
Hakobyan Vahe On

I can propose general solution. For each page you can have div

<div class="page_{variable}"></div>

and check by jQuery whether you have

    $(".page_A"), $(".page_B") 

and so on. I hope it helps.