$('a').each(function() {
var urlPattern = new RegExp('/' + window.location.host + '/');
- //console.log($(this).attr('href'));
- //console.log($(this).attr('href').indexOf("javascript"));
if( !urlPattern.test(this.href)
&& !$(this).hasClass('thickbox')
&& !$(this).hasClass('colorbox')
&& !$(this).hasClass('photoimg')
&& ($(this).attr('href') != "#")
&& ($(this).attr('href') != "")
+ && ($(this).attr('href') != "https://reservations.troutcreek.com/irmnet/res/resmain.aspx")
&& ($(this).attr('href') != null)
&& ($(this).attr('href').indexOf("javascript") == -1)
) {
window.open(this.href, '_blank');
});
}
-});;// Load foundation
+});
+;// Load foundation
$(document).foundation();
$(document).ready(function () {
//$('ul.children').each(function () {
$('a').each(function() {
var urlPattern = new RegExp('/' + window.location.host + '/');
- //console.log($(this).attr('href'));
- //console.log($(this).attr('href').indexOf("javascript"));
if( !urlPattern.test(this.href)
&& !$(this).hasClass('thickbox')
&& !$(this).hasClass('colorbox')
&& !$(this).hasClass('photoimg')
&& ($(this).attr('href') != "#")
&& ($(this).attr('href') != "")
+ && ($(this).attr('href') != "https://reservations.troutcreek.com/irmnet/res/resmain.aspx")
&& ($(this).attr('href') != null)
&& ($(this).attr('href').indexOf("javascript") == -1)
) {
window.open(this.href, '_blank');
});
}
-});
\ No newline at end of file
+});