vote up -2 vote down star

I have a Perl CGI script that calls another CGI script to show it in a javascript pop up window passing a paramenter. The call to the popup is in a html tag and i have this tag within a loop to print different links calling the pop up with a different values for the parameter.

My problem is when all the links are printed and I click on one of them, the value passed to the popup is always the last value. However if instead of showing the link in a pop up window i show it in another tab, gets the right value.

I've attached the code below:

foreach my $pattern(@patterns){

<script language='JavaScript'>

    function newPopup(){

        window.open('displayKB.cgi?id=$pattern',
                    '', 'width=225,height=200,left=900');
    }

</script>

<a href='javascript:newPopup()'> LINK </a>
}

Any suggestion?

flag
What does this have to do with Perl or CGI? – Sinan Ünür Aug 17 at 11:50

3 Answers

vote up 4 vote down

Ignoring the fact that your code sample doesn't actually work in any language, you can only have one function newPopup at a time. Perhaps you would like to have the function take an argument, and generate a call with a different argument for each link?

link|flag
vote up 0 vote down

your pseudo code should be like this:

<script language='JavaScript'>

    function newPopup(pattern){
        var prefix_str = "displayKB.cgi?id=";

        window.open(prefix_str.concat(pattern),
                    '', 'width=225,height=200,left=900');
    }

</script>

foreach my $pattern(@patterns){

    <a href='javascript:newPopup($pattern)'> LINK </a>

}
link|flag
vote up 0 vote down

Hello

I've just tried with the code above and works perfectly

Thanks a million for the answer

link|flag

Your Answer

Get an OpenID
or

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