No need to select all a
tags and loop, you can do simply like
$(document).on('click', '.Images', function(e) {
e.preventDefault();
var Href = 'GetImg.php?img=' + $(this).attr("href");
alert(Href);
$.fancybox.open({
href: Href,
type: 'iframe',
padding: 5
});
});