this post was submitted on 26 Sep 2024
545 points (99.3% liked)

Technology

74190 readers
3799 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related news or articles.
  3. Be excellent to each other!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, this includes using AI responses and summaries. To ask if your bot can be added please contact a mod.
  9. Check for duplicates before posting, duplicates may be removed
  10. Accounts 7 days and younger will have their posts automatically removed.

Approved Bots


founded 2 years ago
MODERATORS
 

Here is the text of the NIST sp800-63b Digital Identity Guidelines.

you are viewing a single comment's thread
view the rest of the comments
[–] dsilverz@thelemmy.club 15 points 10 months ago (3 children)

I circumvent that by right-clicking, then choosing "Inspect element", then switching to the tab "Console", then typing $0.value = "TheValueIWantToPaste". If right-clicking is also disabled, I use either F12 or Tools menu > DevTools.

[–] sugar_in_your_tea@sh.itjust.works 1 points 10 months ago (1 children)

Or just delete the "readonly" bit. I did that on Treasury Direct for years until they finally removed that nonsense.

[–] dsilverz@thelemmy.club 1 points 10 months ago (1 children)

Sometimes it's not "readonly", but a Javascript thing that "event.preventDefault()" and "return false" during the "onpaste" event. As the event is generally set using elm.addEventListener instead of setting elm.onpaste, it's not possible to remove the listener, as it'd need the reference for the handler function that was set to handle the mentioned JS event. So simply setting the value directly using elm.value bypasses the onpaste event.

[–] sugar_in_your_tea@sh.itjust.works 2 points 10 months ago

That's fair, not sure why they'd go through that much effort when DOM attributes exist.

[–] trolololol@lemmy.world 1 points 10 months ago

That sounds fun on mobile