泡立ちの問題である場合は、ドキュメントの最後にある次のスクリプトで問題が解決する<head>
可能性があります。
<script>
$(window).on('load', function() {
$(".buttonLRG").on('click', function(e){
e.preventDefault();
e.stopPropagation();
e.stopImmediatePropagation();
location.href = $(this).attr('href');
});
});
</script>
または、おそらく
<script>
$(window).on('load', function() {
$("div.tabs").on('click', ".buttonLRG", function(e){
e.preventDefault();
location.href = $(this).attr('href');
});
});
</script>
また :
<script>
$(function() {
$(document).on('click', ".buttonLRG", function(e) {
e.preventDefault();
location.href = $(this).attr('href');
});
});
</script>
また :
<script>
$(function() {
$(document).on('click', 'section[role="tabpanel"]', function(e) {
alert("at least we're handling the click");
e.preventDefault();
var $button = $(".buttonLRG").filter(":visible");
location.href = $button.attr('href');
});
});
</script>