Bestemmelse af font
Hvordan bestemmer jeg hvilken skrifttype, farve og størrelse jeg vil have i teksten i følgende script:<script language="JavaScript">
<!--
function swap_text(targetID,textID) {
var texts = new Array(7);
texts[2] = "All feathers are cut at a special angle at the top, this gives the shuttle its rotation and stability in flight. Badly cut feathers will make the shuttle wobble and behave unpredictably during play.";
texts[3] = "16 high-quality goose-feathers are used for each shuttlecock. The feathers are carefully selected to match the grade of the shuttlecock.";
texts[4] = "Two rows of stitching are sewn around the feathers. This gives the shuttlecock durability and a stable flight.";
texts[5] = "A small string of coloured tape is placed at the top of the cork. This increases the visibility of the shuttle.";
texts[6] = "The cork used for shuttlecocks must be of highest quality and always be of pure cork. Mixing the cork with other materials makes the shuttle less sensitive to delicate shots and makes it stiffer to play with, since the cork is too hard or too soft compared to pure cork.";
var myElement = document.getElementById(targetID);
myElement.innerHTML = texts[textID];
}
//
-->
</script>