Languages

Menu
Sites
Language
Mulitiple HTML pages

Hi, I have a question about page navigation.

I have two html files and used something like tau.changePage('pageTwo.html') to navigate to the second page.

Page navigation worked however the scripts in pageTwo is not loaded.

For example, I've added simple alert() at the buttom of my <body /> but there is no alert after page load.

Responses

1 Replies
GEUNSOO KIM

you'd better create separate JS file instead of adding inline javascript lines in html file.

the inline javascript like that you have added is not allowed due to security issue, if I remember correctly.

good luck.