PHP beginner |
|
Hej mensen, bedankt voor het helpen tot nu toe, ik heb nu de volgende code in mijn .js bestand:
Var Naamstring = document.getElementById("naam").value;
function resolutie()
{
document.write ("Resolutie: ")
document.write (screen.availWidth)
document.write ("x")
document.write (screen.availHeight)
}
function bits()
{
document.write ("Aantal Bits: ")
document.write (screen.colorDepth)
}
function pixel()
{
document.write ("Pixel Diepte: ")
document.write (screen.pixelDepth)
}
function history()
{
document.write ("Lengte Van De Geschiedenis: ")
document.write (history.length)
}
function CheckNaam()
{
document.write (Naamstring)
}
Var Naamstring = document.getElementById("naam").value; function resolutie() { document.write ("Resolutie: ") document.write (screen.availWidth) document.write ("x") document.write (screen.availHeight) } function bits() { document.write ("Aantal Bits: ") document.write (screen.colorDepth) } function pixel() { document.write ("Pixel Diepte: ") document.write (screen.pixelDepth) } function history() { document.write ("Lengte Van De Geschiedenis: ") document.write (history.length) } function CheckNaam() { document.write (Naamstring) }
Ik ben een beginner dus weet ik niet alles, en om eerlijk te zijn ben ik gister pak begonnen dus uitleg ben ik nodig (het probleem zit hem in de regel dat ik een Var maak.
Alvast bedankt
|