Link to home
Create AccountLog in
Avatar of ITsolutionWizard
ITsolutionWizardFlag for United States of America

asked on

Esign + HTML form

I have a simple HTML form and at the bottom, I want to add esign. The user can hopefully sign on the phone or pc.

Once it is signed, hopefully it can capture the signature along with HTML
ASKER CERTIFIED SOLUTION
Avatar of lenamtl
lenamtl
Flag of Canada image

Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
See answer
Avatar of ITsolutionWizard

ASKER

Do u know any sample with mvc net? Thanks
This is a jQuery script for the field so this can be added to any form.
Just add the script to your form

<!-- you load jquery somewhere before jSignature ... -->
<script src="path/to/jquery.min.js"></script>

<!-- this, preferably, goes inside head element: -->
<!--[if lt IE 9]>
<script type="text/javascript" src="path/to/flashcanvas.js"></script>
<![endif]-->

<div id="signature"></div>




<script src="path/to/jSignature.min.js"></script>
<script>
    $(document).ready(function() {
        $("#signature").jSignature()
    })
</script>

Open in new window