Hi,
I try to change script source dynamically.
When I use the following code, it works fine, and the script is executed
<script type="text/javascript">
document.write('<script src="http://gamestoenjoy.com/site/test.php"');
</script>
However when I use the following code, it doesn't work, the script isn't executed
<script type="text/javascript">
var url = "http://gamestoenjoy.com/site/test.php";
document.write('<script src=url>');
</script>
The only difference between the codes is that in the first code I use constant sting, and in the second code I use variable, in order to make the source dynamic.
Please help me to solve this problem.