InterviewSolution
Saved Bookmarks
| 1. |
What Is .remove()? |
|
Answer» Use .remove() when you want to remove the element itself, as well as everything INSIDE it. In addition to the elements themselves, all bound EVENTS and jQuery DATA ASSOCIATED with the elements are removed. Use .remove() when you want to remove the element itself, as well as everything inside it. In addition to the elements themselves, all bound events and jQuery data associated with the elements are removed. |
|