This message was deleted.
# helpdesk
s
This message was deleted.
a
Yeah the current docs are somewhat written for folks familiar with their app development environment — the docs tend to be either conceptual overviews or detailed API reference. Unfortunately we don’t have Angular components or an Angular quickstart, but the js sdk README may be more helpful: https://github.com/livekit/client-sdk-js
Oh, yeah, the
Browser
tab is TypeScript without React. (If you’re not familiar with Typescript, it’s just Javascript with some extra syntax to label the types of variables)
(again, it may be more helpful to look at the JS SDK readme, particularly the section on connecting to a room: https://github.com/livekit/client-sdk-js#connecting-to-a-room-publish-video--audio)
a
Ah. yes, the JS SDK was a bit more understandable for me.
Copy code
parentElement.appendChild(element);
Consider this statement. Is "parentElement" like a shorthand here? As in, "put your parentElement here."
a
Yeah so that appendChild stuff will probably be handled by Angular for you But to answer your question, yeah you could either replace
parentElement
with the element you want to add the track element to, or you could make a variable called
parentElement
containing the element you want
a
Awesome, thank you, Noah, things are getting much more understandable now.
a
Good to hear!