Table rows no longer clickable
-
Hi Tobias,
I use the Automatic URL conversion extension and used your script listed in this topic to make hide the URL and make the whole table row clickable.
<script type="text/javascript">
jQuery(document).ready(function($){
$('.tablepress').on( 'click', 'tr', function() {
var $a = $(this).find('a').last();
if ( $a.length )
window.open($a.attr('href'), "_blank");
} );
});
</script>However, it seems that the script stopped working and downgrading TablePress to version 3.0 also doesn’t fix the problem.
Is there any reason that this script should no longer work in the newest versions of TablePress. It seems that URL isn’t even being added to the source code anymore. See for example: https://www.urbaneconomics.nl/policy/
Thanks for your help!
The page I need help with: [log in to see the link]
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.