Je me demandais s'il était possible d'avoir un site avec un iframe et du code jquery qui modifie le contenu iframe toutes les 30 secondes. Le contenu se trouve dans différentes pages Web.
Quelque chose comme ça:
<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
<script>
$(document).ready(function(){
var array = new array();
array[0] = 'http://webPage1.com';
array[1] = 'http://webPage2.com';
// And so on.
// Do something here to change the iframe every 30 second
});
</script>
</head>
<body>
<iframe id="frame"></iframe>
</body>
</html>