Results 1 to 2 of 2

Thread: How to Make Featured Image Zoomer work for Ajax Loaded Images

  1. #1
    Join Date
    Mar 2015
    Posts
    9
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default How to Make Featured Image Zoomer work for Ajax Loaded Images

    1) Script Title: Featured Image Zoomer (now w/Multi-Zoom) v2.1

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...uredzoomer.htm

    3) Describe problem:

    Hello, I am trying to make this script (snippet below) work on AJAX loaded content and it does not work. I understand it doesn't because I am binding the event on document ready. Yet the newly updated images (via AJAX) are not on the page when it's loaded. I am trying to use a delegate in order for this to work. Like on. but I could not get it go. Could someone show me how you can apply "delegate" or use "on" so to work on future content? Thanks a bunch!

    Code:
    jQuery(document).ready(function($){ 
     $(' #multizoom1').addimagezoom({ 
       zoomrange: [3, 10], 
       magnifiersize: [300,300], 
     // additional options 
     }) 
    })
    I was trying to tie it to the button that triggers AJAX load onclick. did not work. #btn-1 sits on original portion of page
    Code:
    jQuery("#btn_1").on("click", function () {
      $('#multizoom1').addimagezoom({ 
        zoomrange: [3, 10], 
        magnifiersize: [300,300], 
      // additional options 
     }) 
     })
    I also tried below. none works
    Code:
    jQuery(document).on("click", "#btn_1", function () {
      $('#multizoom1').addimagezoom({ 
        zoomrange: [3, 10], 
        magnifiersize: [300,300], 
      // additional options 
     }) 
     })
    Last edited by ssh; 03-12-2015 at 06:57 PM. Reason: show tried code

  2. #2
    Join Date
    Mar 2015
    Posts
    9
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default Resolved

    Issue resolved by using delegate rather than on click

Similar Threads

  1. Resolved Featured Image Zoomer (now w/Multi-Zoom) v2.1 and adding photo images dynamically
    By sidRiggins in forum Dynamic Drive scripts help
    Replies: 3
    Last Post: 08-09-2013, 04:59 PM
  2. Featured Image Zoomer - Change Default loaded thumbnail image
    By coffee2020 in forum Dynamic Drive scripts help
    Replies: 17
    Last Post: 04-22-2013, 07:15 PM
  3. Image Power Zoomer: how to make it work on multiple images?
    By Littlefoot in forum Dynamic Drive scripts help
    Replies: 2
    Last Post: 06-05-2012, 09:39 PM
  4. Lightbox waits until all images are loaded to work. Advice?
    By AHalsey in forum Dynamic Drive scripts help
    Replies: 2
    Last Post: 11-11-2010, 05:34 PM
  5. Replies: 4
    Last Post: 12-25-2008, 10:03 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •