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

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

Popular posts from this blog

Generate SHA-1 and SHA-256 for Debug and Release android app

Transfer file to Server and vice versa

How to Import and Export MySQL Database Command line in Linux