I've tried loads of options now!
I have a set of elements which contain thumbnails, created by an ASP Repeated and dynamically rendered to a page by an AJAX load, within them are some icons which when clicked enlarge an image.
The repeated HTML looks like this:
<div class="prodImgContainer">
<img src="*url*" id="*id*" class="itemImages" />
<div class="imgControl">
<span class="tinyIcons tinyDelete imgDelete" id="delete*id*"></span>
<br />
<span class="tinyIcons tinyZoom imgZoom" id="zoom*id*"></span>
</div>
</div>
So, when you anything with the class imgZoom it fires the enlargement. This is done by a standard function which I have in place for loading modal windows.
$('.imgZoom').live('click', function () {
var prodId = $('#productId').val();
var thisImage = ($(this).attr('id').replace('zoom', '')).replace('-tb', '');
var img = $("<img />").addClass('nextImg').attr('id', 'thisImg' + thisImage).attr('src', '*BASE URL *' + prodId + '/' + thisImage + '.jpg').load(function () {
if (!this.complete || typeof this.naturalWidth == "undefined" || this.naturalWidth == 0) {
alert('broken image!');
} else {
$("#largeImgContainer").empty();
$('#showImg').click();
$("#largeImgContainer").css('display', 'none').append(img).delay('1000').fadeIn('slow');
};
});
});
The above code loads the enlarged image into an existing container.
Now... I want to be able to trigger a click event on the next imgZoom element by clicking the image which is created.
The calling element is no longer in the code though, so I am trying to do it like this:
$('.nextImg').live('click', function () {
var nextImage = ($(this).attr('id').replace('thisImg', '')).replace('-tb', '');
$('#zoom' + nextImage + '-tb').next('.nextImg').click();
});
Here, I am able to determine the ID of the element which was originally clicked to open up this image
I am then expecting $('#zoom' + nextImage + '-tb').next('.nextImg').click(); to find that element, then find the next one with the class nextImg and click it
But it doesnt work... what am I missing?
.next()doesn't work that way. What it does is return the element that is immediately after the current element in the DOM if it matches the selector, otherwise it returns no elements. – Anthony Grist Feb 21 at 16:23