Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello,
    Yes, it’s possible.

    => You can try this one. Please check the below example.

    For Example:
    ===========
    HTML:
    <a href="https://www.google.com" id="no-link">Hyperlink</a>

    JavaScript:

    <script type="text/javascript">
    	jQuery(document).ready(function () {
              setTimeout(function () {
                   
                    jQuery('a[href]#no-link').each(function () {
                        var href = this.href;
        
                        jQuery(this).removeAttr('href').css('cursor', 'pointer').click(function () {
                            window.open(href, '_self');
                        });
                    });
        
              }, 500);
        });
    </script>

    Thanks!

    Aims Infosoft

    (@aimsinfosofts)

    @ttom15907 If that worked then please mark as resolved.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Hide Button Url on Hover’ is closed to new replies.