Copy Text Tutorial Using Clipboard API (JavaScript)

แชร์
ฝัง
  • เผยแพร่เมื่อ 28 พ.ย. 2024

ความคิดเห็น • 11

  • @aliezadkhaha9439
    @aliezadkhaha9439 2 ปีที่แล้ว +1

    We don't need 13 minutes tutorial to copy a text. This is a very easy way to copy your text: document.querySelector("#copy-url-btn").onclick = function () {
    navigator.clipboard.writeText(document.querySelector("#copy-url-text").innerText);
    };

  • @shaderone07
    @shaderone07 3 ปีที่แล้ว +1

    Thanks. Really helpful

    • @NsquaredCoding
      @NsquaredCoding  3 ปีที่แล้ว +1

      No problem! I'm glad to hear that

  • @ramzkenjayev7811
    @ramzkenjayev7811 3 ปีที่แล้ว +1

    Thanks a lot

  • @anderson3997
    @anderson3997 2 ปีที่แล้ว

    Excelente, Obrigado.

  • @mazenmeziad7205
    @mazenmeziad7205 8 หลายเดือนก่อน

    How can I use the clipboard API with http requests?

  • @DRIFFS
    @DRIFFS 2 ปีที่แล้ว

    I followed this instruction but it does not work when I duplicate for another 'copy-text' to copy.

    • @NsquaredCoding
      @NsquaredCoding  2 ปีที่แล้ว

      Can you paste your JavaScript code here? I can look at it

  • @oyanfelipe
    @oyanfelipe 2 ปีที่แล้ว

    the code is the same
    document.getElementById('btncopy').onclick = function() {
    const _this = this
    navigator.clipboard.writeText(document.getElementById('para').innerText).then(function(){
    _this.innerText ='Copied'

    setTimeout(function(){
    _this.innerText = 'Copy'
    }, 1000)
    })
    }
    but my console is getting this error and I don't know why.
    Uncaught TypeError: Cannot set properties of null (setting 'onclick')
    at script.js:1:44

    • @thevezz198
      @thevezz198 ปีที่แล้ว

      I have the same error did you figure out how to fix it?