Hi everyone, I have a drop down menu form that uses javascript. The forms works great but I tried adding another exact same form on the same page and while the first one still works the new one does not. I tried changing the form name of the 2nd one but it still doesnt work. Any help would be great. Thanks, Steve
you also need to make sure that each form element id is only once on the page. so if you have a field with the id name you can't have the same id in the second form. You would have to rename it to name1 or similar.
Yes check the ids of elements and also make sure that you are calling your JavaScript dropdown function for the second form also.