I get this error: document.getElementByTagName is not a function

12emalectilloma

New Member
The code supposed to be use javascript between the tags thatconsist of mouseover event, and the list items in the HTML page mustbe styled as follows: normal - black, 12, bold and over - yellow, 15,bold, italic.\[code\]<html><head> <title> Using mouseover eve </title> <script language = "javascript"> <!-- function changeStyle() { var item = document.getElementByTagName("li"); item.style.color = "yellow"; item.style.fontSize = "15pt"; item.style.fontWeight = "bold"; item.style.fontStyle = "italic"; } --> </script></head><body> <ul style = "color: black; font-size: 12pt; font-weight: bold" > <li onMouseOver = "changeStyle()"> item 1 </li> <li onMouseOver = "changeStyle()"> item 2 </li> </ul></body></html>\[/code\]
 
Back
Top