Updated GetElementById (markdown)

The-Mighty-Cat 2025-02-12 22:27:29 +01:00
commit 7df9a0cd1f

@ -1,6 +1,6 @@
```cpp ```cpp
void* Crafter::CppDOM::Bindings::GetElementById(const char* id, std::size_t idLenght); void* Crafter::CppDOM::Bindings::GetElementById(const char* id, std::size_t idLenght);
inline void* GetElementById(const std::string& id); inline void* Crafter::CppDOM::Bindings::GetElementById(const std::string& id);
``` ```
Accepts an id string and returns a void* to a JS object. Accepts an id string and returns a void* to a JS object.