Retriev3r
8/22/2017 - 2:19 PM

Make an element clickable with JavaScript

Make an element clickable with JavaScript

jQuery(document).ready(function() {
            jQuery('.pi-header').click(function() {
              window.location.href='index.php';
            });
        });