Pass Nothing from Javascript to VBScript in IE9

Unfortunately, you are probably stuck here – JavaScript does not have a “Nothing” equivalent. See this article for more information.

However, the following may work. In your VBScript code, create a function called “GetNothing” that returns “Nothing”. In your JavaScript code, use “var jsNothing = GetNothing()”. It comes from this article.

Leave a Comment