If you make a new Request() and then cancel is immediately would the server still get the request?
Like
var req = new Request({url:"somefile.html"}).send();
req.cancel();
The reason is the files are being loaded from an S3 bucket but i still want
the web server the site is on to track the click.
Steve
