Join the AMA (Ask Me Anything) with the Firefox leadership team to celebrate Firefox 20th anniversary and discuss Firefox’s future on Mozilla Connect. Mark your calendar on Thursday, November 14, 18:00 - 20:00 UTC!

Spletno mesto bo delovalo z omejenimi zmožnostmi, medtem ko na njem izvajamo vzdrževalna dela za vas. Če članki ne rešijo vaše težave in želite zastaviti vprašanje, naša skupnost za podporo čaka na vas na @FirefoxSupport na Twitterju in na /r/firefox na Redditu.

Iskanje po podpori

Izogibajte se prevarantski tehnični podpori. Nikoli vam ne bomo naročili, da pokličete telefonsko številko ali nam pošljete osebne podatke. Sumljivo dejavnost prijavite z gumbom »Prijavi zlorabo«.

Več o tem

Hello! One of the main thing is not quite ok is permitting users to copy text from javascript Prompts.

more options

Can you please tell me why do Firefox permit users to copy text from js prompt? Regarding general permissions, this functionality "can be prevent", but why not in firefox? There is somebody that can post a prevent possibility to copy text from a javascript prompt, alert or confirm (native).

This could be very helpful.

Can you please tell me why do Firefox permit users to copy text from js prompt? Regarding general permissions, this functionality "can be prevent", but why not in firefox? There is somebody that can post a prevent possibility to copy text from a javascript prompt, alert or confirm (native). This could be very helpful.
Priloženi posnetki zaslona

Vsi odgovori (1)

more options

You can copy text from pretty much any element of the Firefox UI, unless it's clickable (because that would break functionality). There's no reason why that shouldn't be the case, since the text is visible anyway.

If you really wanted to, you can prevent the ability to copy text (with the exception from the actual box you can type in on a prompt) by using the following code in a userChrome.css file:

.content-prompt description {
    user-select: none !important;
}

If you have not previously used a userChrome.css file before, check out the How to Create a userChrome.css File page by userChrome.org for more information.

Hope this helps.