I have a program that places input buttons on a form. When a user clicks on the button the onclick attribute uses location.href to direct it to a link.
elementButton_1.setAttribute("onclick", "self.location.href='http://google.com'; return false");
I am trying to store the links in an array. How can i insert an array into the location call?
Example:
locationArray = new Array();
locationArray[0] = "http://google.com";
elementButton_1.setAttribute("onclick", "self.location.href=locationArray[0]; return false");
I'm not entirely sure I understand but I think you want: