(function($){ /* external.js */ var host = location.host; $('a').on('click', function(e){ var href = $(this).attr('href'), link = href.replace(/(https?:\/\/)(.*)\/(.*)/, '$2'); if (href.match('https?') && link != host){ window.open(href); e.preventDefault(); } }); /* navigation.js */ var appends = ''; $('.menu .main > li').each(function(){ var link = $(this).children('a'); appends += ''; $(this).find('li').each(function(){ var link = $(this).children('a'); appends += ''; }); }); $('nav.menu').append('').on('change', 'select', function(){ location.href = $(this).val(); }); /* caption.js */ $('.entry').each(function(i){ var _i = i; $(this).find('img').each(function(){ var alt = $(this).attr('alt'); if (alt == '' || typeof alt == 'undefined'){ $(this).wrap(''); } else { $(this).after(''+alt+'').wrap(''); } }); }); $('.fancybox').fancybox(); })(jQuery);