MCQOPTIONS
Saved Bookmarks
| 1. |
If para1 is the DOM object for a paragraph, what is the correct syntax to changethe text within the paragraph? |
| A. | "New Text"? |
| B. | para1.value="New Text"; |
| C. | para1.firstChild.nodeValue= "New Text"; |
| D. | para1.nodeValue="New Text"; |
| Answer» C. para1.firstChild.nodeValue= "New Text"; | |