Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using following code to open a file dialog box, but nothing happens on button click(). What's wrong?

<input id="btnBrowse" name="btnBrowse" type="button" value="Browse" onclick="document.execCommand('SaveAs');"/>

Edited:

Any other way to open such a dialog on other browsers as well?

share|improve this question
look at this answer stackoverflow.com/questions/833015/… – Haim Evgi Dec 30 '09 at 7:41
Related SO post: Javascript: document.execCommand cross-browser? – o.k.w Dec 30 '09 at 7:41

3 Answers

AFAIK, It will work only in IE. It is working on my IE 7 and not in FF.

Check this : http://msdn.microsoft.com/en-us/library/ms536419%28VS.85%29.aspx

share|improve this answer

IT works in IE only !

share|improve this answer
2  
While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes. – Linus Kleen Nov 13 '12 at 20:07
up vote 0 down vote accepted

I found an alternative. It's name is Uploadify and is a JQuery implementation.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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