I have a static session id that I am using and you need to add it to the url when clicked, but it doesn't seem to be right. If you go to http://www.mysite.com/test.php , you get a redirect, you need to add the XYX session ID, so the correct URL to get to the page will be http://www.mysite.com/ test.php? sessionid = XYX
<a href="http://www.mysite.com/test.php" class="foo">link here</a>
$('.foo').click(function(){
(this).append(?sessionid=XYX');'
});
I know this is wrong, all the documentation I found is much more complicated than my needs. thank!
source
share