samuel-philipp.de/js/app.js
2016-10-28 19:05:19 +02:00

21 lines
560 B
JavaScript

// $(document).ready(function () {
// $(document).foundation();
// });
$(function () {
$('#maximage').maximage();
$('#maximage').children().on('click', function(){
// Retrive our URL (set in data-href attribute on img tags)
var url = $(this).data('href');
// If our URL is set, open a new window with that URL
// You can certainly use window.location here too
if(url.length > 0){
window.open(
url, // <- This is what we set with the data-href attribute
'_blank' // <- This is what makes it open in a new window.
);
}
});
});