Goedemidag,
Van het internet heb ik een random quote in javascript gedownload.
Dat heb ik omgezet in een extern jsbestand en daarna opgeroepen in
een van de pages van mijn site in aanbouw.
Dat ging prima. Elke keer als ik de pagina opriep kwam er een andere
quote, precies zoals ik mij voorgesteld had. Toen het aantal quotes uigebreid.
Ging ook nog oed. Tot ik aan 22 quotes kwam en dacht: laat ik het nog eens proberen. Nee dus.
De jscript liet zich niet meer opstarten. Na wat puzzelen bleek dat meer dan 19 quotews door het
script niet werden uitgevoerd. Terug naar de site, waarvan ik het had gehaald, maar geen help of contact, geen info of emailadres. Lange tijd tegen aangekeken en geprobeerd, maar geen oplossing.
Hieronder de code van het java-script, dat na uitbreiding tot meer dan 19 quotes niet mieer werkte. Kan iemand mij een tip geven hoe dit wel kan worden bereikt met misschien een kleine modificatie?
N.B Voorzichtig. Ik ben niet meer dan een aspirant-beginner js. Bij voorbaat dank.
[js]
// Copyright 2004 by CodeLifter.com
// Free for all; but please leave in this header.
// ==============================================
var Quotation=new Array() // do not change this!
// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array. Remember
// to increment the Quotation[x] index!
Quotation[0] = "Time is of the essence! Comb your hair.";
Quotation[1] = "Sanity is a golden apple with no shoelaces.";
Quotation[2] = "Repent! The end is coming, $9.95 at Amazon.";
Quotation[3] = "Honesty blurts where deception sneezes.";
Quotation[4] = "Pastry satisfies where art is unavailable.";
Quotation[5] = "Delete not, lest you, too, be deleted.";
Quotation[6] = "O! Youth! What a pain in the backside.";
Quotation[7] = "Wishes are like goldfish with propellors.";
Quotation[8] = "Love the river's \"beauty\", but live on a hill.";
Quotation[9] = "Invention is the mother of too many useless toys.";
// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();
[/js]
Van het internet heb ik een random quote in javascript gedownload.
Dat heb ik omgezet in een extern jsbestand en daarna opgeroepen in
een van de pages van mijn site in aanbouw.
Dat ging prima. Elke keer als ik de pagina opriep kwam er een andere
quote, precies zoals ik mij voorgesteld had. Toen het aantal quotes uigebreid.
Ging ook nog oed. Tot ik aan 22 quotes kwam en dacht: laat ik het nog eens proberen. Nee dus.
De jscript liet zich niet meer opstarten. Na wat puzzelen bleek dat meer dan 19 quotews door het
script niet werden uitgevoerd. Terug naar de site, waarvan ik het had gehaald, maar geen help of contact, geen info of emailadres. Lange tijd tegen aangekeken en geprobeerd, maar geen oplossing.
Hieronder de code van het java-script, dat na uitbreiding tot meer dan 19 quotes niet mieer werkte. Kan iemand mij een tip geven hoe dit wel kan worden bereikt met misschien een kleine modificatie?
N.B Voorzichtig. Ik ben niet meer dan een aspirant-beginner js. Bij voorbaat dank.
[js]
// Copyright 2004 by CodeLifter.com
// Free for all; but please leave in this header.
// ==============================================
var Quotation=new Array() // do not change this!
// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array. Remember
// to increment the Quotation[x] index!
Quotation[0] = "Time is of the essence! Comb your hair.";
Quotation[1] = "Sanity is a golden apple with no shoelaces.";
Quotation[2] = "Repent! The end is coming, $9.95 at Amazon.";
Quotation[3] = "Honesty blurts where deception sneezes.";
Quotation[4] = "Pastry satisfies where art is unavailable.";
Quotation[5] = "Delete not, lest you, too, be deleted.";
Quotation[6] = "O! Youth! What a pain in the backside.";
Quotation[7] = "Wishes are like goldfish with propellors.";
Quotation[8] = "Love the river's \"beauty\", but live on a hill.";
Quotation[9] = "Invention is the mother of too many useless toys.";
// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();
[/js]
Laatst bewerkt door een moderator: