Guest User

Untitled

a guest
Jan 16th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <div class="ribbon"><span>Sale</span></div>
  2.  
  3. $("#items").on("click", "img", function () {
  4. var path = $(this).attr('alt');
  5. if (path != "none") {
  6. $('#model-image-img').attr('src', path);
  7. $('#model-title').text($(this).attr('data-title'));
  8. $('#model-image').modal('show');
  9. } else {
  10. return false;
  11. }
Add Comment
Please, Sign In to add comment