Skip to content Skip to sidebar Skip to footer

Activexobject Filesystemobject Not Releasing In Javascript

I have a Javascript function that saves JSON data locally, using an ActiveXObject in IE9. It links into FileSystemObject or FSO scripting for file access. If this Javascript functi

Solution 1:

The Close method needs empty parenthesis after it, like so:

ts.Close();

Ref here for more info.

Post a Comment for "Activexobject Filesystemobject Not Releasing In Javascript"