File "capturaimg.js"

Full Path: C:/wamp64/www/APPSST/js/capturaimg.js
File size: 303 bytes
MIME-type: text/plain
Charset: utf-8

document.getElementById('frmio').addEventListener("submit", function(e) {

    $canvas = document.querySelector("#canvas");

    var image = $canvas.toDataURL(); // data:image/png....
    document.getElementById('base64').value = image;
    alert('ENTREGA DE DOTACION HA SIDO EXITOSA')
}, false);