I have this javascript code but when i send this: asd.JPG the regex fails to me..
if (data.match(/([^\\/\\\\]+)\\.(jpg|jpeg|gif|png|tiff|tif)$/i)) retur
The i flag you have on the end (/.../i) should be doing it.
i
/.../i
(CW because let's face it, one shouldn't earn rep for this sort of thing... :-) )