Yes. Just call ChildPageFunction(); from anywhere on MasterPage and it will start.
function MasterPagefunction() { ChildPagefunction();
This works the other way around, so you can call MasterPageFunction() from your child page, as well as ifre.
This is due to the fact that when rendering, all the html of the main page and the html of the child page are combined, so both pages have the same JavaScript.
MasterPage is a template that wraps around your content page.
GenericTypeTea
source share