Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where to find JavaScript documentation?

I think theres one https://developer.mozilla.org/en/JavaScript/Reference but for for things like what properties/functions a Textarea object will have, where can I get it?

I know textarea have properties like selectionStart, selectionEnd but what others? where can I find that info?

like image 404
Jiew Meng Avatar asked Dec 29 '22 04:12

Jiew Meng


1 Answers

The Gecko DOM Reference is pretty complete.

For the dark side (IE-specific stuff), there's also Microsoft's HTML and DHTML Reference

And for cross-browser advice, consult QuirksMode (thanks Raynos)

like image 107
Sean Patrick Floyd Avatar answered Jan 13 '23 19:01

Sean Patrick Floyd