$("#name").remove(); This will remove the text field when you click on the button. State true or false.
Answer options
A
False
B
True
Correct answer: True
Explanation
TRUE — jQuery's .remove() method removes the matched element and all its descendants from the DOM. $('#name').remove() removes the element with id='name'.