
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
JavaScript Event for Pasted Content in an Element
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>
Advertisements