- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to set HTML content of an element using jQuery?
To set the HTML content of an element, use the html() method. You can try to run the following code to get HTML content of an element using jQuery −
Example
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("#button1").click(function(){ $("#demo").html("<strong>This text is highlighted.</strong>"); }); }); </script> </head> <body> <p id="demo">This is a paragraph.</p> <button id="button1">Click to set HTML</button> </body> </html>
- Related Articles
- How to get HTML content of an element using jQuery?
- How to replace the content of an element using jQuery?
- How to set the content of a textarea using jQuery?
- How to set width and height of an element using jQuery?
- How to add display:none in an HTML element using jQuery?
- How can I set the content of an iframe without src using jQuery?
- How to remove all the attributes of an HTML element using jQuery?
- How to prepend content to the inside of every matched element using jQuery?
- How to append an element before an element using jQuery?
- How to append an element after an element using jQuery?
- How can I show and hide an HTML element using jQuery?
- How to clone an element using jQuery?
- How do we set the text direction for the content in an element in HTML?
- How to set cursor position in content-editable element using JavaScript?
- How to add attributes to an HTML element in jQuery?

Advertisements