document.write(“Hello World!“); document.write(“ “); var name=prompt(“What is your name?”); document.write(“Hello, “+name+”!”); var age=prompt(“How old are you?”); if (age<18) { alert("You are not allowed to access this page."); } else { alert("Welcome! You can enjoy the content."); } function show() { var d=new Date(); alert(d); } show(); window.onload=function() { alert('The page has been loaded.'); }; function changeColor() { document.getElementById('para').style.color="#FF0000"; }
function changeSize() { document.getElementById('para').style.fontSize=document.getElementById('size').value; }
function hidePara(){ document.getElementById('para').style.display=""; }
// JavaScript Document
function changecolor(){ var myBody=document.getElementsByTagName('body')[0]; myBody.style.backgroundColor="#FFFFCC";
var myTitle=document.getElementsByTagName('title')[0]; myTitle.innerHTML="Welcome to My Webpage!“;
var myParagraphs=document.getElementsByTagName(‘P’); for(var i=o;i<myParagraphs.length;i++){ myParagraphs[i].style.color="#660066"; myParagraphs[i].innerHTML="This is a paragraph.“;