How to provide functionality for cut, copy, paste, undo, redo, delete buttons in a web application

Hi I am creating a web application where I have created buttons for cut, copy, paste, undo, redo, delete options. I wanted all these buttons to work according to their functionality after the button is clicked, how can I implement that in my application? I am using html for my design and JavaScript and JQuery for functionality.enter image description here

application screenshot

+3


source to share


1 answer


You can use an iframe and set iframe.document.designMode = "On"; using javascript.

then use iframe.document.execCommand (aCommandName, aShowDefaultUI, aValueArgument);



find out more here link

0


source







All Articles