Form Fields with Mask

I would like to use these masks on my forms, how can I use in WebFlow?

Thanks in advance.
Bruno.

I never use this plugin.

Anyway By custom code. First, you should know how to work with this plugin in general (Read the docs, Create codepen example and so on).

  1. cdn before body (copy-paste)

<script src="https://cdnjs.com/libraries/jquery.mask"></script>

  1. After (1) Insiltaze (Copy-paste + change the class selector)
<script>
$(document).ready(function(){
  // jquery selector - field with class of "date"
  $('.date').mask('00/00/0000');
});
</script>
  1. Publish your site and test the live url

You should know about:

jQuery .class Selector

  $('.date')

Select all elements with class “date”
Class Selector (“.class”) | jQuery API Documentation

Webflow

Try this. Next add live url / read-only link. Thanks