For a cache issue, I want to send the current datetime with a url, but with the following code, the current timestamp isn't shown in the url..
<script>var d=new Date();</script>
<li><a href="/controllername?t="+d.getTime()+"&name=.... // etc
How to add javascript datatime properly in the url?