Hi, I need to pass dynamic url tags onto the target url when clicked, for example. If i send a visitor to www.example.com/?id=100 And on that site, there is a hyper link to www.example2.com How is it possible to automatically send the click to www.example2.com/?id=100 Im sure its easy but cant figure it out, thanks so much in advance Alan
If you have control over example.com then check for the post variable when you create the the links in the page. If example.com is a post on a wordpress site then write a simple plugin that checks the content and makes changes to any links in the post.
If you can post some code, maybe we could give better answers. But basically with jQuery you can do something like: $("#element-you-want-to-change").attr("href","new-url");