Monday, July 24, 2017

Explain about DOM Traversal and Manipulation.

DOM Traversal and Manipulation

Get the <button> element with the class 'continue' and change its HTML to 'Next Step...'
1
$( "button.continue" ).html( "Next Step..." )