I have my HTML5 app on Intel XDK with a javascript (funciones.js) that return data to my table with id="resultados", it's work in the main page, but when I nav to a subpage, the javascript not work in the subpage.
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/jquery.mobile-1.4.5.min.css">
<script src="funciones.js"></script>
</head>
<body>
<table id="resultados">
</table>
<p><a href="page2.html">Navigate to page 2</a></p>
</body
</html>