I have an iframe with a lot of links in it. When someone clicks a link in the iframe, I want to change the target link using javascript. For example,
<a href="./test?v=1">Hello</a> When someone clicks the above, I want to modify the target to, say: "./test?v=1&p=1" The constraint is that I cannot modify the anchor tags themselves of the iframe as they are being generated seperately by an external script. What I can do is add javascript to the iframe window or add javascript to the page containing the iframe. How do I go about this? Regards Manohar Vanga

