Witam,
Mam taki problem, że potrzebuję aby po naciścnięciu przycisku na stronie został wylosowany jeden z kilku elementów. Próbowałem wymieszać ze sobą skrypty:
<script type="text/javascript"> 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(
).random().join(''));
i
<script language="JavaScript"> function pushbutton() {
alert("Hello!");
}
<input type="button" name="Button1" value="Naciśnij mnie" onclick="pushbutton()">
jednak to nie poskutkowało. proszę o pomoc