Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
docs:programming:javascript:typeof [2007/07/15 21:34] – created billh | docs:programming:javascript:typeof [2008/08/03 00:25] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 8: | Line 8: | ||
alert(typeof NumericalValue) // displays " | alert(typeof NumericalValue) // displays " | ||
alert(typeof StringValue) // displays " | alert(typeof StringValue) // displays " | ||
+ | </ | ||
+ | |||
+ | ===== checking for existence ===== | ||
+ | <code javascript> | ||
+ | if( typeof addEvent != ' | ||
+ | // addEvent method exists, and is okay to use here | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | |||
+ | ===== typeof with document.getElementById ===== | ||
+ | Do NOT use the following: | ||
+ | <code javascript> | ||
+ | if( typeof document.getElementById(' | ||
+ | // do something with element | ||
+ | } | ||
+ | </ | ||
+ | ...because getElementById() is a method which incorporates its own typeof checking. | ||
+ | <code javascript> | ||
+ | if( document.getElementById(' | ||
+ | // do something with element | ||
+ | } | ||
+ | |||
+ | // or | ||
+ | var el = document.getElementById(' | ||
+ | if( el ){ | ||
+ | // do something with element | ||
+ | } | ||
+ | |||
</ | </ |