I am unable to search for nodes with a specific name with any other context than document.
is there a cross browser way to search getElementsByName() with a context other than
document.getElementsByName()?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
getElementsByName is a property of the document only, in all browsers. You cannot add it to the element object prototype in all browsers, and even if you could it would be less efficient than the native implementation. You can do whatever filtering you need on the nodelist returned from document.