ابحث في الدعم

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

FF – required input validated no matter execution runs in handler

  • 2 (ردّان اثنان)
  • 1 has this problem
  • 22 views
  • آخر ردّ كتبه Uzivatel919

more options

I have some background form submission implemented. Similar to

    form.onsubmit = function XY(e) { e.prevenDefault(); … }

In form there is (similar) input

    <input type="text" name="someName" required="required" class="toBeCleared"/>

Then there is (similar) JS.

    if(e.currentTarget.elements["someName"].className === "toBeCleared") {
      e.currentTarget.elements["someName"].value = '';
    }

Everything works as expected except that in FF after all work is done the field is marked with red color as not validated (since it is empty and required).

Return false, true from body of handler has no effect on this.

I have some background form submission implemented. Similar to <pre><nowiki> form.onsubmit = function XY(e) { e.prevenDefault(); … }</nowiki></pre> In form there is (similar) input <pre><nowiki> <input type="text" name="someName" required="required" class="toBeCleared"/></nowiki></pre> Then there is (similar) JS. <pre><nowiki> if(e.currentTarget.elements["someName"].className === "toBeCleared") { e.currentTarget.elements["someName"].value = ''; }</nowiki></pre> Everything works as expected except that in FF after all work is done the field is marked with red color as not validated (since it is empty and required). Return false, true from body of handler has no effect on this.

Modified by cor-el

All Replies (2)

more options

Maybe remove the required attribute or put some dummy content in it after you have confirmed that the data is valid?

Try to ask advice at the Stack Overflow forum site.

more options

cor-el said

Maybe remove the required attribute or put …

I was just about to get info if it is known bug, feature or whatever else there can be known about it.

I can invent some workaround anyway.

Modified by Uzivatel919