Description
ssee
button ?
Coffee
Tea
Milk
“Apply”
function myFunction() {
const element = document.getElementById(“myList”).children[0];
const newNode = document.createTextNode(“Water”);
element.replaceChild(newNode, element.childNodes[0]);
}
38. Below is a JavaScript code. Write the exact output that will be
generated when this code is executed:
for ( var x = 1; x
40. Write an HTML code to create a registration form. The form should
include fields for the user’s name, email, password, and a submit button.
Also, make “your name” a massage temporary text and use the
autofocus attribute for the user name field.
41. What are the PHP superglobals $_GET and $_POST used for?
– Explain the difference between the GET and POST methods in web
forms in terms of visibility of data and limitations on the amount of
information that can be sent?
Purchase answer to see full
attachment