How to get javascript's variables by excel vba?
Posted
by cpps
on Stack Overflow
See other posts from Stack Overflow
or by cpps
Published on 2010-04-30T08:03:56Z
Indexed on
2010/04/30
8:07 UTC
Read the original article
Hit count: 251
JavaScript
|excel-vba
assume that I have a html file in which javascript like this
<script type="text/javascript">
var test1 = 1;
var test2 = 2;
var tset3 = 3;
</script>
So, how can I get javascript variables by excel vba and use it in excel vba?
© Stack Overflow or respective owner