Which event occurs in JavaScript when an element's content is pasted?


The onpaste event occurs when you paste content in the element.

Example

You can try to run the following code to learn how to work with onpaste event in JavaScript.

<!DOCTYPE html>
<html>
    <body>
      <input type="text" onpaste="pasteFunction()" value="paste text here">
      <script>
         function pasteFunction() {
            document.write("Text pasted successfully!");
         }
      </script>
   </body>
</html>

Updated on: 23-May-2020

60 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements