szukam modyfikacj, badz scryptu ktory bym mogl zamiescic dzieki ktorej po odswiezeniu strony pojawia sie inny baner wpisany w liste
znalazlem cos takiego ale za bardzo nie wiem jak to uzupelnic
Kod:
<script type="text/javascript">
// <![CDATA[
Array.prototype.random = function(limit)
{
if (typeof limit == 'undefined' || limit < 0) limit = 1;
else if (!limit) limit = this.length;
for (var i = 0, source = this, target = new Array(), n = source.length; i < limit && n > 0; i++)
{
do { var index = Math.random(); } while (index == 1);
index = Math.floor(index * n);
target.push(source[index]);
source[index] = source[--n];
}
return target;
}
document.write(new Array(
// Tu wpisz kolejne elementy:
'<img src="logo.png">',
'adres pierwszego bannera',
'2 banner'
).random().join(''));
// ]]>
</script>
</div>
nie aktualne