Get value of HTML LABEL FOR

Make sure you use the code like this to get the value of LABEL's FOR attribute. This will work in most browsers:
var labelFor = myLabel.htmlFor || myLabel.getAttribute('for'); // htmlFor is W3.org defined and is in IE, 'for' in in FF
Just a reminder for myself :)