I must have all my "scripts calls" within a SINGLE "$(document).ready()" . Why I do this :
<head>
...
</head>
<body>
...
<script src="http://....jquery call"></script>
<script>
$(document).ready(function(){
<?php include('script_01.js'); ?>
<?php include('folder/script_02.js'); ?>
<?php include('../../folder/script_03.js'); ?>
});
</script>
</body>
This works perfectly in all browsers, but : Do I have the right to do that ? Is it compatible W3C ? Thanks. Nico.