Report Bug
Qus : Which property is used to set or get the HTML content inside an element?
Qusकिसी तत्व के अंदर HTML सामग्री को सेट करने या प्राप्त करने के लिए किस प्रॉपर्टी का उपयोग किया जाता है?

A. innerHTML
B. outerHTML
C. textContent
D. value


Solution
A. innerHTML



Explanation
The innerHTML property is used to get or set the HTML content inside an element, including nested elements and their content.



Report Bug