vote up 0 vote down star

I have a page with an anchor tag. In my JavaScript I am setting the HREF attribute of the anchor tag dynamically based on some if-else conditions. Now I want to invoke the click event of the anchor tag programmatically. I used the below code, but was not successful.

var proxyImgSrc="CostMetrics.aspx?Model=" + model +"&KeepThis=true&TB_iframe=true&height=410&width=650";

document.getElementById("proxyAnchor").href=proxyImgSrc;
document.getElementById("proxyAnchor").onclick;

Can any one tell me how to go ahead? I have a jQuery light box implementation(thickbox) on this link.

Kindly advise. Thanks in advance.

flag

56% accept rate

5 Answers

vote up 5 vote down check

If you have jquery installed then why not just do this:

$('#proxyAnchor').click();

As to why your original code is not working - it is probably because you are calling 'onclick', and not 'onclick()'. Without the parenthesis javascript will return whatever is assigned to the onclick property, not try to execute it.

Try the following simple example to see what I mean:

var f = function() { return "Hello"; };

alert(f);
alert(f());

The first will display the actual text of the function, while the second will display the word "Hello" as expected.

link|flag
Why the downvote? – samjudson Jun 11 at 13:30
Thanks Samjudson.IT worked – Shyju Jun 11 at 13:30
vote up 1 vote down

I believe you want to invoke the click event. Not the "onClick." Also, be sure to include the parenthesis () when you're invoking a method. Don't confuse methods (which end with ( and )) with attributes and properties which do not end with ( and ).

// Using jQuery - Which you tagged...
$("#proxyAnchor").attr("href", proxyImgSrc).click();
link|flag
Yes.Click event – Shyju Jun 11 at 12:09
vote up 3 vote down

You should call click event like that :

document.getElementById("proxyAnchor").click();
// $('#proxyAnchor').click();

but in your case you should set window's location to redirect page, if you want that.

link|flag
vote up 0 vote down

I believe this is what you're after:

        var proxyImgSrc="CostMetrics.aspx?Model=" + model +"&KeepThis=true&TB_iframe=true&height=410&width=650";
        $("#proxyAnchor").attr('href', proxyImgSrc).trigger("click");;
link|flag
vote up 0 vote down

For an immediate page change, you can also do this:

var proxyImgSrc= "CostMetrics.aspx?Model=" + model + "&KeepThis=true&TB_iframe=true&height=410&width=650";
window.location = proxyImgSrc;

Here's an example from W3 Schools: http://www.w3schools.com/js/tryit.asp?filename=tryjs_location

link|flag

Your Answer

Get an OpenID
or

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