If I have a form field with an id of "gender[male]". Will it cause any problems that I should know about when trying to work with it's value via javascript?
Code: Select all
var gender_male = document.getElementById('gender[male]');
and that sort of thing... (obviously my question pertains to more than just that example, but it gives you an idea of what I mean).