Скажем, у меня есть следующий JavaScript на странице HTML
<html>
<script>
var simpleText = "hello_world";
var finalSplitText = simpleText.split("_");
var splitText = finalSplitText[0];
</script>
<body>
<a href = test.html>I need the value of "splitText" variable here</a>
</body>
</html>
Как получить значение переменной "splitText" вне тегов script.
Спасибо!