How To Hide This On Elementor

GadaG

Active member
Mar 19, 2021
399
194
43
hi modders, anyone here know how to hide this url like on this picture bellow
1666057084375.png
 

vcless

New member
Trusted Uploader
Sep 17, 2019
21
17
3
is that automatically? browser built-in.. if your pointer on hover ahref link
 

albertcorbett

New member
Aug 8, 2019
26
1
3
40
Brazil
albertcorbett.com.br
Excuse me my English, I hope you can understand!

I don't know if it will help, but something I've done to try to hide the access link, especially to a file, is instead of putting the link to the direct file, setting it within an "index.html" with automatic execution to Open (but the browser will download it), and the link indicates the folder that contains this index. Thus, on the link when putting the mouse over, only one folder will appear and not the full link.
 

unicorn

Well-known member
Babiato Lover
Trusted Uploader
Feb 23, 2019
1,305
467
83
Neverland
any explanation or is it use use any plugins ?

That's exactly what I want to know

use this code :

JavaScript:
$((function() {
    $("a").each((function(t, r) {
        var h = $(this).attr("href");
        $(this).attr("hiddenhref", h), $(this).removeAttr("href")
    })), $("a").click((function() {
        url = $(this).attr("hiddenhref"), window.location.href = url
    }))
}));

CSS:
a {text-decoration:underline;}
a:hover {
  text-decoration: none !important;
  cursor: pointer !important;
}
 

GadaG

Active member
Mar 19, 2021
399
194
43
use this code :

JavaScript:
$((function() {
    $("a").each((function(t, r) {
        var h = $(this).attr("href");
        $(this).attr("hiddenhref", h), $(this).removeAttr("href")
    })), $("a").click((function() {
        url = $(this).attr("hiddenhref"), window.location.href = url
    }))
}));

CSS:
a {text-decoration:underline;}
a:hover {
  text-decoration: none !important;
  cursor: pointer !important;
}
where should i put Javascript code?
 

About us

  • Our community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day to make sure our community is one of the best.

Quick Navigation

User Menu