Guest User

Untitled

a guest
May 24th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. var select_data = [];
  2. select_data.office = [
  3. [0, 0, " "],
  4. [0, 1, "New York"],
  5. [0, 2, "London"]
  6. ];
  7.  
  8. select_data.department = [
  9. [0, 0, " "],
  10. [1, 1, "Executive"],
  11. [1, 2, "Administration"],
  12. [1, 3, "Original Design"],
  13. [1, 4, "Technology"],
  14. [2, 5, "Original Design"],
  15. ];
  16.  
  17. select_data.each(function(one) {
  18. one.each(function(two) {
  19. alert(select_data.one.two[0]);
  20. });
  21. });
Add Comment
Please, Sign In to add comment