We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 15258
    • 0 Posts
    Hi all,

    eForm seems to rewrite my HTML5 form and forget the required tag and.
    It effect only the input and not the textearea.

    Did some people have the same problem?

    exemple:

    Before eForm:

            <div>
              <label for="cfEmail">Email</label>
              <input type="text" id="cfEmail" pattern="^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,4})$" required/>
            </div>
    



    After eForm:
            <div>
              <label for="cfEmail" >Email</label>
              <input type="text" id="cfEmail" pattern="^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,4})$"  value="" />
            </div>
    
      • 25511
      • 13 Posts
      Same here. Haven't found workaround yet though...
        • 36416
        • 589 Posts
        Quote from: Roope at Sep 06, 2011, 03:38 PM
        Same here. Haven't found workaround yet though...

        Try to use required="required"
          • 25511
          • 13 Posts
          Quote from: danilocuculic at Sep 06, 2011, 08:37 PM
          Try to use required="required"

          Works like charm - thanks!