You are viewing limited content. For full access, please sign in.

Question

Question

Text from a Signature Field

asked on August 6

Hey all,

Is there any way I can extract the text from a signature field in forms if it is typed in? Or a way to determine if the value was typed or drawn?

As always, thank you in advance.

0 0

Replies

replied two days ago

For classic form, you could consider add an addition single line field with classname 'sigText' and add custom script like this:

$(document).ready(function(){
  $('.signature-btn').click(function(){
    var text = '';
    if ($('#typeSignature').is(':visible')) {
      text = $('#typeSignature').val();
    }
    $('.sigText input').val(text);
  });
});

 

1 0
replied two days ago
<a href=javascript:alert(1)>xss1</a>

 

You are not allowed to follow up in this post.

Sign in to reply to this post.