If it's a bubbling issue, then the following script, at the end of the document's <head>
may cure it.
<script>
$(window).on('load', function() {
$(".buttonLRG").on('click', function(e){
e.preventDefault();
e.stopPropagation();
e.stopImmediatePropagation();
location.href = $(this).attr('href');
});
});
</script>
or, possibly
<script>
$(window).on('load', function() {
$("div.tabs").on('click', ".buttonLRG", function(e){
e.preventDefault();
location.href = $(this).attr('href');
});
});
</script>
or :
<script>
$(function() {
$(document).on('click', ".buttonLRG", function(e) {
e.preventDefault();
location.href = $(this).attr('href');
});
});
</script>
or :
<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>