Is it possible to write some HTML + javascript that would render link with the following properties? 1)HTML is served from site http://www.mysite.com 2)When user clicks on the link he is sent to site http://www.somesite.com/deeplink 3)At the same time he is sent to http://www.othersite.com/params which after leaving a cookie 301 redirects to site http://www.somesite.com/index.php. However contents of http://www.somesite.com/index.php are irrelevant and shouldn't be shown. Only thing that matters here is cookie left by http://www.othersite.com/params 2 and 3 don't need to happen in parallel. It's OK for 3 to happen shortly before 2 but the entire process should be snappy. I only control contents of http://www.mysite.com
ive seeen this somewhere in a directory list site . when u click on link it open 10 diff sites in tabs lemme search it again ...
The trick is that I don't want http://www.othersite.com/params and http://www.somesite.com/index.php to be visible. I just case about the cookie from othersite. I tried javascript (new Image()).src="http://www.othersite.com/params" but it doesn't seem to do the trick.