i have implemented this script for uploading files with ajax, it works perfect in other browsers except for explorer, i noticed that formData is not supported by IE9 and less, are there any alternatives for formData in IE, and i want use clean java...
I have a need to capture the topics of a search from one of my blog pages and write it to text file for followup. I have been able to capture the input string, however, am not able to write it to a text file. I have read and tried to implement all th...
I have following code for reading excel in javascript : <html> <head> <script type="text/javascript"> function readData(x,y) { var excel = new ActiveXObject("Excel.Application"); alert(excel); v...
I have a function with ActiveX Objects in my Javascript file to simulate a F11 for fullscreen mode. I want to sign this code to avoid some security issue, anyone who knows how I could do it ? The code : function fullScreenWindow() { var el = docu...
I am having a hard time figuring out this problem. I have two different pages where I do the following query. Page 1 -> if (typeof(window.ActiveXObject) != "undefined") //returns true Page 2 -> if (typeof(window.ActiveXObject)...
what does it mean to get this error: ReferenceError: ActiveXObject is not defined var fso = new ActiveXObject("Scripting.FileSystemObject"); here is my code: var fso = new ActiveXObject("Scripting.FileSystemObject"); varFi...
I have a HTML web form with 5 text inputs and a button calling a JavaScript function. The function as it stands, will open an existing Excel file, find the last populated row, insert a new row below it and put the form values in, one value to each ce...
I've noticed that there are 2 ways we can create ActiveX object in JavaScript, one is by embedding: <object id="TestControl" classid="clsid:xxx-xx-xx-xx"></object> and then later on obtain object using DOM: var myC...
This is really a question for Eric Lippert, or someone at Microsoft who's familiar with the implementation of the JScript engine. Can I do this: var obj = new ActiveXObject("My.ProgId"); var methods = GetMethodsViaMagic(obj); ? (su...
In a Javascript program that runs within WSH and creates objects, let's say Scripting.FileSystemObject or any arbitrary COM object, do I need to set the variable to null when I'm finished with it? Eg, am I recommended to do this: var fso =...
©2020 All rights reserved.