
August 8th, 2012, 10:20 AM
|
|
Registered User
|
|
Join Date: Aug 2012
Posts: 2
Time spent in forums: 1 h 30 m 33 sec
Reputation Power: 0
|
|
Quote: | Originally Posted by Winters Welcome to DevShed, bagua!
At a quick glance I can see that you are not using the correct syntax for referencing an array.
Javascript Code:
Original
- Javascript Code |
|
|
|
// This dropdowns.item(i).value == '3' // should be dropdowns.item[i].value == '3' // This is deprecated (old and replaced) var myArr = new Array(); // should be var myArr = [];
|
Thanks for welcoming me. I made your edits but I still have the same issue.
|