i want to rum command using Windows Command Prompt but it require ActiveX object... Mozilla FireFox4 and Google Chrome are giving error

Uncaught ReferenceError: ActiveXObject is not defined
link|improve this question

30% accept rate
feedback

2 Answers

ActiveXObject is only supported in IE. This is not a standard object and specific to IE and hence Windows. Other browsers runs on multiple platforms and it doesn't make sense for them to implement this non standard object.

link|improve this answer
how can i open notepad using javascript? without ActiveXObject – Mustafa Mansoor Apr 30 '11 at 12:27
If you are talking about "javascript in browser", then you cann't do that and there is no reason you should be doing that. Think about this, if you can open notepad from JS code then any web site can run "format your hard drive" program as soon as you open the web site. – Ankur May 1 '11 at 7:02
feedback

Only Internet Explorer allows for running ActiveX objects.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.