tessguefen
6/16/2015 - 5:07 PM

whyyyyy

whyyyyy

function ajaxedPhotos () {
			$('#photo-categories a').on('click', function(e) {
				e.preventDefault();
				//processing?
				$.ajax({
					url: $(this).attr('href'),
					type: 'GET',
					success: function(data) {
						$('#photo-wrap').html($(data).find('#photo-wrap').html());
						console.log($(data).find('#photo-wrap').html());
					}
				}).done(function () {
					console.log('done');
					// processing
					//cornerstoneUX.sharedFunctions.conformDisplay();
					ajaxedPhotos();
				});
			});
		}