
- HTML Tutorial
- HTML - Home
- HTML - Overview
- HTML - Basic Tags
- HTML - Elements
- HTML - Attributes
- HTML - Formatting
- HTML - Phrase Tags
- HTML - Meta Tags
- HTML - Comments
- HTML - Images
- HTML - Tables
- HTML - Lists
- HTML - Text Links
- HTML - Image Links
- HTML - Email Links
- HTML - Frames
- HTML - Iframes
- HTML - Blocks
- HTML - Backgrounds
- HTML - Colors
- HTML - Fonts
- HTML - Forms
- HTML - Embed Multimedia
- HTML - Marquees
- HTML - Header
- HTML - Style Sheet
- HTML - Javascript
- HTML - Layouts
- HTML References
- HTML - Tags Reference
- HTML - Attributes Reference
- HTML - Events Reference
- HTML - Fonts Reference
- HTML - ASCII Codes
- ASCII Table Lookup
- HTML - Color Names
- HTML - Entities
- HTML - Fonts Ref
- HTML - Events Ref
- MIME Media Types
- HTML - URL Encoding
- Language ISO Codes
- HTML - Character Encodings
- HTML - Deprecated Tags
Execute a script when the content of the element is being cut in HTML?
Oncut attribute triggers when the user cuts the content of an element. Although all HTML elements supported the oncut attribute, cutting content was not allowed unless the element's contenteditable attribute was set to "true."
Following are the examples…
Example: Cutting some text in <input> using <oncut>
In the following example we are excuting a javascript for cutting some text in an <input> element using the oncut attribute.
<!DOCTYPE html> <html> <body> <input type="text" oncut="myworld()" value="WELCOME TO THE TUTORIALSPOINT"> <p id="varma"></p> <script> function myworld() { document.getElementById("varma").innerHTML = "You cut text....!"; } </script> </body> </html>
Output
When you try to execute the script,the window will pop up and display the text "welcome to the tutorialspoint" and when you try to cut the input content, it will display the text "you cut the text".
Example: Contenteditable is set to “true”
In the following example we are excuting javascript to cut some text in<p>element while,contenteditable set to “true”.
<!DOCTYPE html> <html> <body> <p contenteditable="true" oncut="myFunction()">WELCOME TO THE TUTORIALSPOINT</p> <script> function myFunction() { alert("You cut text!"); } </script> </body> </html>
Output
When the script gets executed, the contenteditable is set to true to allow the oncut function and display text "welcome to the tutorialspoint" and when you try to cut the text, it will display an alert saying that "you cut the text".
- Related Articles
- Execute a script when the content of the element is being copied in HTML?
- Execute a script when the element is being dragged in HTML?
- Execute a script when the element is being clicked in HTML?
- Execute a script when the element is being double-clicked in HTML?
- Execute a script when the dragged element is being dropped in HTML?
- Execute a script when the user pastes some content in an element in HTML?
- Execute a script when the browser window is being resized in HTML?
- Execute a script when an element's scrollbar is being scrolled in HTML?
- Execute a script when the element is invalid in HTML?
- Execute a script when a mouse wheel is being scrolled over an element in HTML?
- Execute a script when the element is finished loading in HTML?
- Execute a script when an element is being dragged over a valid drop target in HTML?
- Execute a script when the element loses focus in HTML?
- Execute a script when the element gets focus in HTML?
- Execute a script when the element gets user input in HTML?
