If XHR2 is supported with file-upload capabilites, my application needs to do different preparation. What is a safe way to check if these capabilities are supported. Is it sufficient, for example, to just check an XMLHttpRequest (or MS equivalents) for the upload property? like...

var xhr = new XMLHttpRequest();
if (typeof xhr.upload !== "undefined") {
  do nice stuff
}
else {
  do oldschool stuff
}

Or is this not safe?

link|improve this question

68% accept rate
feedback

1 Answer

if (new XMLHttpRequest().upload) {
  // welcome home!
} else {
  // go away with your shitty browser
}
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.