Здравствуйте,
есть html страница
<html>
<head>
<title></title>
<style>
body { margin: 0; }
</style>
</head>
<body>
<script src="http://сайт/php/test.php?vacancy=кассир&city=москва" type="text/javascript"></script>
</body>
</html>
в файле
http://сайт/php/test.php
я возвращаю страницу с javascript
<?php
print <<<HTML
<script type='text/javascript'>
document.write('<li>');
document.write('$vacancy');
document.write('</li>');
document.write('<li>');
document.write('$city');
document.write('</li>');
</script>
HTML;
?>
почему -то при вызове html страницы, загружаемый javascript не выполняется.
ничего не происходит.
почему, ребята?
помогите, спецы по JavaScript