insert array into location.href

1.8k Views Asked by At

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");
2

There are 2 best solutions below

1
On BEST ANSWER

I'm not entirely sure I understand but I think you want:

elementButton_1.setAttribute("onclick", "self.location.href='" + locationArray[0] +"'; return false");
0
On

As long as elementButton_1 is defined, what you posted will work. However, a much better practice is:

locationArray = new Array();
locationArray[0] = "http://google.com";

var elementButton_1 = document.getElementById('mybutton');

// define a click handler for the button
elementButton_1.onclick = function() {
    self.location.href = locationArray[0];
    // ..
}

It's better not to define runnable code as a string, for security & maintainability purposes.