I'm using a template with the following preview link:
The template includes an image of a laptop on the left side, with clickable points representing links.
My goal is to make these points clickable so that they open specific pages like mbank.pl or wp.pl when clicked.
Here's the code I have:
<script type="text/javascript">
var pointCount = 0;
$(document).ready(function () {
$(".deleteMyAccount").click(function (e) {
e.preventDefault();
$('#dialog').modal('show');
});
// More JavaScript code...
});
</script>
<!-- Additional modal windows and form elements -->
<section class="section_100">
<!-- Section content -->
</section>
<a href="" class="btn btn-default btn-rounded mb-4 formAdd" data-toggle="modal" data-target="#modalSubscriptionForm"
style="display:none"></a>
<script type="text/javascript">
$(document).ready(function () {
$('.imgpo').click(function (e) {
// Image click functionality
});
// Other JavaScript functionalities...
});
</script>
I am encountering an issue where clicking on the selected page does not redirect as intended. Do you know how to resolve this?
Any help or suggestions would be greatly appreciated. Thank you!