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");
link|improve this question

You example works, because the second parameter to setAttribute will be evaluated as JS code.. – paislee Jan 30 at 19:40
feedback

2 Answers

up vote 0 down vote accepted

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

elementButton_1.setAttribute("onclick", "self.location.href='" + locationArray[0] +"'; return false");
link|improve this answer
That was what i was looking for thx – alphadev Jan 30 at 19:37
1  
The original example works as well as this suggestion. – paislee Jan 30 at 19:51
I didn't even consider that! Very true. I don't know how to add a comment to your own reply but in general you should not use the constructor form, but use the array literal to instantiate your array. answers.oreilly.com/topic/… – Alex Pineda Jan 30 at 19:55
feedback

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.