JavaScript and Jquery Related Stuff
Digital Signature Using Signature Pad JavaScript Library
https://jsfiddle.net/szimek/d6a78gwq/
https://github.com/szimek/signature_pad
https://developer.mozilla.org/en-US/docs/Web/API/HTMLCanvasElement/toDataURL
https://jsfiddle.net/szimek/d6a78gwq/
https://github.com/szimek/signature_pad
https://developer.mozilla.org/en-US/docs/Web/API/HTMLCanvasElement/toDataURL
How to convert file to base64 in JavaScript?
How to bind click event to dynamically created HTML elements in jQuery
var myEditor;
ClassicEditor
.create( document.querySelector( '#editor' ) )
.then( editor => {
console.log( 'Editor was initialized', editor );
myEditor = editor;
} )
.catch( err => {
console.error( err.stack );
} );
//get value: myEditor.getData();
//set value: myEditor.setData();
Comments
Post a Comment