Code:
<script type="text/javascript">
function randomA() {
var cardImg = document.getElementById("cardA");
var text = document.getElementById("nameofA");
var list = [
"http://www.justtheway.com/wb/events/bingo/holiday/images/cards/hhcard1.gif",
"http://www.justtheway.com/wb/events/bingo/holiday/images/cards/hhcard2.gif",
"http://www.justtheway.com/wb/events/bingo/holiday/images/cards/hhcard3.gif",
"http://www.justtheway.com/wb/events/bingo/holiday/images/cards/hhcard4.gif",
"http://www.justtheway.com/wb/events/bingo/holiday/images/cards/hhcard5.gif",
"http://www.justtheway.com/wb/events/bingo/holiday/images/cards/hhcard6.gif",
"http://www.justtheway.com/wb/events/bingo/holiday/images/cards/hhcard7.gif",
"http://www.justtheway.com/wb/events/bingo/holiday/images/cards/hhcard8.gif",
"http://www.justtheway.com/wb/events/bingo/holiday/images/cards/hhcard9.gif",
"http://www.justtheway.com/wb/events/bingo/holiday/images/cards/hhcard10.gif",
"http://www.justtheway.com/wb/events/bingo/holiday/images/cards/hhcard11.gif",
"http://www.justtheway.com/wb/events/bingo/holiday/images/cards/hhcard12.gif",
"http://www.justtheway.com/wb/events/bingo/holiday/images/cards/hhcard13.gif",
"http://www.justtheway.com/wb/events/bingo/holiday/images/cards/hhcard14.gif",
"http://www.justtheway.com/wb/events/bingo/holiday/images/cards/hhcard15.gif",
"http://www.justtheway.com/wb/events/bingo/holiday/images/cards/hhcard16.gif",
"http://www.justtheway.com/wb/events/bingo/holiday/images/cards/hhcard17.gif",
"http://www.justtheway.com/wb/events/bingo/holiday/images/cards/hhcard18.gif",
"http://www.justtheway.com/wb/events/bingo/holiday/images/cards/hhcard19.gif",
"http://www.justtheway.com/wb/events/bingo/holiday/images/cards/hhcard20.gif",
"http://www.justtheway.com/wb/events/bingo/holiday/images/cards/hhcard21.gif",
"http://www.justtheway.com/wb/events/bingo/holiday/images/cards/hhcard22.gif",
"http://www.justtheway.com/wb/events/bingo/holiday/images/cards/hhcard23.gif",
"http://www.justtheway.com/wb/events/bingo/holiday/images/cards/hhcard24.gif",
"http://www.justtheway.com/wb/events/bingo/holiday/images/cards/hhcard25.gif",
"http://www.justtheway.com/wb/events/bingo/holiday/images/cards/hhcard26.gif",
"http://www.justtheway.com/wb/events/bingo/holiday/images/cards/hhcard27.gif",
"http://www.justtheway.com/wb/events/bingo/holiday/images/cards/hhcard28.gif",
"http://www.justtheway.com/wb/events/bingo/holiday/images/cards/hhcard29.gif",
"http://www.justtheway.com/wb/events/bingo/holiday/images/cards/hhcard30.gif",
"http://www.justtheway.com/wb/events/bingo/holiday/images/cards/hhcard31.gif",
"http://www.justtheway.com/wb/events/bingo/holiday/images/cards/hhcard32.gif",
"http://www.justtheway.com/wb/events/bingo/holiday/images/cards/hhcard33.gif",
"http://www.justtheway.com/wb/events/bingo/holiday/images/cards/hhcard34.gif",
"http://www.justtheway.com/wb/events/bingo/holiday/images/cards/hhcard35.gif",
"http://www.justtheway.com/wb/events/bingo/holiday/images/cards/hhcard36.gif",
"http://www.justtheway.com/wb/events/bingo/holiday/images/cards/hhcard37.gif",
"http://www.justtheway.com/wb/events/bingo/holiday/images/cards/hhcard38.gif",
"http://www.justtheway.com/wb/events/bingo/holiday/images/cards/hhcard39.gif",
"http://www.justtheway.com/wb/events/bingo/holiday/images/cards/hhcard40.gif"];
var list2 = ["Card 1", "Card 2", "Card 3", "Card 4", "Card 5", "Card 6", "Card 7", "Card 8", "Card 9", "Card 10",
"Card 11", "Card 12", "Card 13", "Card 14", "Card 15", "Card 16", "Card 17", "Card 18", "Card 19", "Card 20",
"Card 21", "Card 22", "Card 23", "Card 24", "Card 25", "Card 26", "Card 27", "Card 28", "Card 29", "Card 30",
"Card 31", "Card 32", "Card 33", "Card 34", "Card 35", "Card 36", "Card 37", "Card 38", "Card 39", "Card 40"];
var number = Math.floor(Math.random() * 40);
cardImg.src = list[number];
text.value = list2[number];
}
</script>
<script type="text/javascript">
function randomB() {
var cardImg = document.getElementById("cardB");
var text = document.getElementById("nameofB");
var list = [
"http://www.justtheway.com/wb/events/bingo/holiday/images/cards/hhcard1.gif",
etc... i dont want to waste space by posting all the same cards here. its an exact repeat but changing the function name. of course there is another script with cardC
im sure there is another way to do the above with less space but since im not that experienced in java its easier for me.
Bookmarks