2 SetInnerHTML
The-Mighty-Cat edited this page 2025-02-12 23:15:09 +01:00
namespace Crafter::CppDOM::Bindings {
    void* SetInnerHTML(void* ptr, const char* html, std::size_t htmlLenght);
    void* SetInnerHTML(void* ptr, const std::string& html)
}

Sets the innterHTML property of the javascript object in ptr to the contents of html

Mozilla Reference