Hey Paul,
Since you can’t change the markup directly, you will need to set an ID on each module you want to work with using the ID setting in the advanced tab. Once you’ve done that, you can target it with JavaScript like this…
(function( $ ) {
$( function() {
$( '#my-id-1' ).on( 'click', function( e ) {
// Your code here...
});
$( '#my-id-2' ).on( 'click', function( e ) {
// Your code here...
});
});
})( jQuery );