Element Data Methods.html()On this page.html()Get or Set the innerHTML value.Variations.html(): StringGets the innerHTML value of the first matched elementconsole.log( $( "p" ).html() );.html( String value ): DoMiniSets node innerHTML for all the matched elements$( "p" ).html('Link: <a href='#'>Click here!</a>');