Answered
How can I determine if an image really exists by a certain address?
For example, the following code:
mynewLink=decodeURI(lst[p]);
alert(mynewLink);The output is:
file:C:/Users/dublove/Desktop/PDF/6688.PSDHow does this determine if 6688.PSD really exists?
if(mynewLink.exists){
....
}This doesn't seem right.
Thank you.
