> Here's the bit of jQuery we're using: > > $('#LocatorGoLink').fancybox({ > 'hideOnContentClick': false, > frameWidth: 660, > frameHeight: 700, > overlayOpacity: .6, > padding: 0, > callbackOnShow: > function(){$('div#resultsDataContainer').load('locatorResults.cfm,{'zip':$('#branchLookup').val()});} > });
Well, it turns out that the likely culprit is FancyBox. If we .load() our content onto a div not manipulated by fancybox, it works fine. If we try to load it into fancybox, we get that odd 'one load behind' issue. So, we've got it narrowed down now... -DA