ITsolutionWizard
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
Once it is signed, hopefully it can capture the signature along with HTML
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
This is a jQuery script for the field so this can be added to any form.
Just add the script to your 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>
ASKER