I am trying to execute script when the page is loaded but it didn't works
To begin I load my first page with
$('#loadingPage').bind('pageinit', function(event) {...}
this works I redirect my page to menu.html
<!DOCTYPE HTML>
<html>
<head></head>
<body>
<div date-role="page" id="menuPage"></page>
</body>
</html>
In my script file I have
$('#menuPage').live('pageshow', function(event) {alert('bbb')};
$('#menuPage').live('click', function(event) {alert('aaa')};
I never have the alert bbb but when I click on my screen I have the alert aaa
The full script code:
Thanks
