Hello,
I just begin to work with jQuery and have some questions. Where I can
find a list of all properties for elements. E.g. I generate a list
item:
var list = document.createElement("li");How can I fill in in the list? list.text doesn't work. I have to guess again and again for each element which properties it has. Is there an API where I can see all properties of the object? Thank you, Sonya

