Guest User

Untitled

a guest
Nov 22nd, 2017
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. imageurl = "/images/products/" + item.id + "/" + item.productimage
  2. $.ajax({
  3. url: imageurl,
  4. type: 'HEAD',
  5. error: function() {
  6. //file not exists
  7. imageurl = "/images/products/" + item.productimage
  8. },
  9. success: function() {
  10. //file exists
  11. imageurl = "/images/products/" + item.id + "/" + item.productimage
  12. }
  13. });
  14. console.log('image: ' + imageurl);
Add Comment
Please, Sign In to add comment