- 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 replace innerHTML of a div tag using jQuery?
To replace innerHTML of a div tag, use the html() method. The dot notation calls the html() method to replace the inner html with the parameter placed between, i.e. Demo here. The html() here modifies the .innerhtml.
Example
You can try to run the following code to to replace innerHTML of a div tag using jQuery −
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> <script> $( document ).ready(function() { $('.myclass').html('Demo'); }); </script> </head> <body> <div class="myclass">Hello World</div> </body> </html>
- Related Articles
- How to replace innerHTML of a div using jQuery?
- How to get innerHTML of a div tag using jQuery?
- How to replace only text inside a div using jQuery?
- How to find anchor tag in div and add class using jQuery?
- How to duplicate a div using jQuery?
- How to copy the content of a div into another div using jQuery?
- How to toggle a div visibility using jQuery?
- How to create div dynamically using jQuery?
- How to print div content using jQuery?
- How to load a page in div using jQuery?
- How to get the width of a div element using jQuery?
- How to get the height of a div element using jQuery?
- How to add a title in anchor tag using jQuery?
- How to add a class on click of anchor tag using jQuery?
- How to create navigation bar using div tag in HTML?

Advertisements