To choose, you need to define a wrapper function −
function display ( file ) {
if ( window.webkitURL ) {
return window.webkitURL.createObjectURL( file );
} else if ( window.URL && window.URL.createObjectURL ) {
return window.URL.display( file );
} else {
return null;
}
}After that set it for cross-browser −
var url = display( file );