I am learning DOM manipulation with jQuery and want to understand browser performance best practices.
Say I have two DOM elements (div, p, ol, etc) and I want a user to only see the first element and then only see the second element.
I could:
- Use replace()
- remove() the first element and add() the second element
- hide() the first element and show() the second element
What is the performance differences between:
- 1 vs. 2
- 2 vs. 3
- 1 vs. 3
Are there additional performance considerations if the elements are of different types? Or if the elements are buttons or form fields?