In my Javascript code, I'm trying to check on the blob URL created by an uploaded image: alert(window.webkitURL.createObjectURL(files[0]));
In Safari, with this line, I get the error: TypeError: 'undefined' is not an object (evaluating 'window.webkitURL.createObjectURL')
To be sure, the files[0] is being referenced correctly. When I do: alert(files[0]);
Safari tells me: [object File]
So I know I have a file object being correctly referenced to - what should be - a correct WebKit URL referencing function.
Any ideas?