From: Steve Sutton Date: Fri, 24 Mar 2017 13:17:47 +0000 (-0400) Subject: Return false X-Git-Tag: v1.0.0^2~10 X-Git-Url: http://cvs2.gaslightmedia.com/gitweb/index.cgi?a=commitdiff_plain;h=99132f37204e7f969b58ada012dc5dfd75659c25;p=WP-Plugins%2Fglm-member-db-apis.git Return false after the click. --- diff --git a/js/front.js b/js/front.js index 64004fe..d65b41c 100644 --- a/js/front.js +++ b/js/front.js @@ -2,5 +2,6 @@ jQuery(document).ready(function($){ $("a.google-map-link").on("click",function(){ var address = $(this).data('location'); window.open('https://maps.google.com/?q=' + address, '_blank'); + return false; }); });