function yhoo(text) { alert(text); } function accessIt() { alert("Image src: " + document.getElementById('theImage').src); alert("Amount of TR's: " + document.getElementsByTagName('TR').length); alert("Amount of TD's: " + document.getElementsByTagName('TD').length); } function addItem(item,theURL) { var theDt = document.createElement('DT'); var theB = document.createElement('B'); var theA = document.createElement('A'); theB.appendChild(theA); theDt.appendChild(theB); document.getElementById('menu').appendChild(theDt); theA.innerText=item; theA.href=theURL; }
![]() |
Dept. of Computer and Information Science, Linköping University | |
![]() TDDB64 Web Programming and InteractivityThis course covers an overview of WWW, HTML, basic Java programming, and advanced Java programming. The course consists of a number of lectures, programming assignments, and a programming project, where the students practice advanced Java and WWW implementation techniques. |