- JS Introduction
- JS Introduction
- JS Comments
- JS Variables
- JS Datatypes
- JS Operators
- JS Type Conversions
- JS Control Flow
- JS Comparisons
- JS If else
- JS If else Ladder
- JS Ternary Operator
- JS Switch
- JS For Loop
- JS For In
- JS For Of
- JS While
- JS Do While
- JS Break & Continue
- JS Functions
- JS Function Declaration
- JS Function Parameters
- JS Return Statement
- JS Function Expressions
- JS Anonymous Functions
- JS Objects
- JS Objects
- JS Object Methods
- JS Object Constructors
- JS Object Destructuring
- JS Object Prototypes
- JS Map, Filter & Reduce
- JS ES6
- JS ES6
- JS let and const
- JS Arrow Functions
- JS Template Literals
- Destructuring Assignment
- JS Spread Operator
- JS Default Parameters
- JS Classes
- JS Inheritance
- JS Map
- JS Set
- JS Async
- JS Callbacks
- JS Asynchronous
- JS Promises
- JS Async/Await
- JS HTML DOM/BOM
- JS Document Object
- JS getElementbyId
- getElementsByClassName
- JS getElementsByName
- getElementsByTagName
- JS innerHTML
- JS outerHTML
- JS Window Object
- JS History Object
- JS Navigator Object
- JS Screen Object
JavaScript outerHTML
Usage:
- The outerHTML property retrieves the HTML content of an element, including the element itself, or sets the HTML content of an element with a new value.
Getting HTML Content:
- You can retrieve the HTML content of an element, including the element itself, using the outerHTML property.
Setting HTML Content:
- You can replace an entire element, including its attributes, by assigning a new HTML string to the outerHTML property.
Example: Getting HTML Content
<div id="exampleDiv">This is the content</div>
var htmlContent = document.getElementById('exampleDiv').outerHTML;
console.log(htmlContent); // Output: <div id="exampleDiv">This is the content</div>
Example: Setting HTML Content
<div id="exampleDiv">Old content</div>
document.getElementById('exampleDiv').outerHTML = '<p>New content</p>';
- After execution, the <div> element with ID 'exampleDiv' will be replaced by a <p> element with the text 'New content'.
Considerations:
- When setting outerHTML, the entire element, including its attributes, will be replaced.
- Be cautious with user-generated content to prevent security vulnerabilities like cross-site scripting (XSS) attacks.
Key Points
- outerHTML provides a way to manipulate both the HTML content and structure of an element.
- It includes the element itself in the retrieved or set HTML content.
- Use outerHTML judiciously, especially when setting content dynamically, to ensure proper rendering and security.