How can I exclude <BR> elements when using the statement below?
var children = document.getElementById('id').getElementsByTagName('*');
Is there a special syntax for getElementsByTagName that allows me to achieve this, or is there another efficient way to accomplish it?