InterviewSolution
Saved Bookmarks
| 1. |
How we can set the html contents of an element in jQuery? |
|
Answer» <P>The HTML() method is utilized to set CONTENT. It overwrites the whole content for the matched elements. Example$('#IDNAME').html('<p>Best Interview Question</p>'); |
|