I have a list of radio buttons. Each radio button has a dynamic name. Is there a way to check if they are all selected? Because most radio validation scripts uses a static name.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
If you know the id of some container, you can find the radio buttons with "getElementsByTagName". Thus if your HTML looks something like this:
then you could check the radio buttons like this:
Your life would be considerably easier if you were using a framework like jQuery. |
|||