You are here:
» Jquery InnerHTML
Jquery InnerHTML
This Comment will be submitted for moderation and will not be accessible to other users until it has been approved.
How do I replace the innerhtml of my code using Jquery?
document.myid.innerHTML = 'Hello';

1 year 42 weeks ago
Tags:
You can use Jquery text() to replace the text:
You can use html to replace all html structure (means all html tags):
Post Comment