On my page there are a lots of links. Some of these links has fileType
querystring. Lİke this :
<a href="file.php?some=query&fileType=...">LINK</a>
But fileType querystring's value is dynamic . I'm there is a radio button like this . User choosing file type with this, XML or XLS . If user choose XML , links will be like this
<a href="file.php?some=query&fileType=xml">LINK</a>
if user choose XLS links will be like this
<a href="file.php?some=query&fileType=xls">LINK</a>
fileType
querystring's value is coming with type
JS variable. Now how can i add this variables value to my links. I tried this but it's not working.
<a href="file.php?fileType<script>return type;</script>">LINK</a>