All Questions
Tagged with javascript forms
28,947 questions
0
votes
0
answers
13
views
Odoo Contact Form won't Autofill correctly
I'm using odoo for my webstore and want to an "inquire" button on each product that goes to contact page with the product name passed in the url and then autofilled into the contact form.
...
0
votes
0
answers
12
views
splunk xml - Submit node not allowed inside form
Splunk gives validation warnings that unknown node submit not allowed here. Is there's any fixes for this
<form version="1.1">
<fieldset submitButton="true">
<input ...
1
vote
1
answer
60
views
On Firefox, the placeholder does not reappear after a reset when it has been filled by autofill
After sending the form (in javascript and ajax) I execute a script that resets the form with a loop (node as input element).
node.value = ""
The problem is that if the inputs have been auto-...
-3
votes
0
answers
50
views
HTML input form not working correctly on some devices but works on others [closed]
The input field in my app works normally with any value, except "!" and "2" specifically.
However, when i send the link to my friends to test it it works for some but not for ...
-6
votes
1
answer
96
views
HTML form not submitting [closed]
I am trying to make a login form in html. But, when I click submit, the JavaScript code doesn't execute. Here is my JavaScript/jquery code:
$('#login').submit(function(e) {
e.preventDefault();
...
-4
votes
1
answer
58
views
Triggering this file input with a button click doesn't allow images to attach [duplicate]
I am sure it is something simple that I am not understanding but I don't see the issue here.
In the code below I am using a button (#clickme) to trigger the file input (#image-input) to open a ...
0
votes
0
answers
16
views
Using TUIEditor in WTForms
I need to use a rich text editor on a web application. I've chosen Toast UI editor: https://nhn.github.io/tui.editor/latest/.
The application is developed in python using cherrypy. My forms are ...
-1
votes
2
answers
62
views
js submit button continuously clicking on button
I have form on my website with JS. When submitted, seems submit button continuously clicking, without giving success message, even though form details successfully received. Not sure what wrong I am ...
1
vote
1
answer
38
views
Form disable the overflow
I try to implement an overflow in Form react-router, that's work in a classic <div></div> but when I use <Form></Form> my overflow doesn't work. I don't find any topic who talk ...
1
vote
3
answers
82
views
How to hide a div in form until selection is made
I need to hide a div within my (calculating) order form until a selection is made in a select menu.
I've scaled back this 'Ice Cream Order Form' example to see if anyone has any guidance.
In this ...
0
votes
0
answers
57
views
I've added "required" to a HTML form input via javascript, but the input does not function as 'required' if changed after page load
I have a HTML form with a selectable input - you can enter this or that.
I've included code in my Javascript function that also applies the 'required' attribute to the one you've selected while making ...
0
votes
0
answers
32
views
How to send Conversation to Form Submitter?
I am trying to get my custom form to add submitted data to a Google Sheet as well as send a confirmation to the submitter and a notification to myself.
I've got it working so that it adds the data to ...
1
vote
3
answers
124
views
How to trigger a native HTML validation error for URLs in input or textarea fields instead of a custom one?
I'm working on a form using Formik in React, and I need to prevent users from entering URLs in a textarea or input field.
Currently, I'm using setCustomValidity to show an error when a URL is detected:...
0
votes
0
answers
21
views
Flask Form Submission: class_id is "undefined" When Creating an Exam
I'm developing a Flask-based school hub app where teachers can create exams. However, I'm encountering an issue where class_id is "undefined" when submitting the form.
Issue:
When I submit ...
0
votes
0
answers
76
views
Make a plain HTML Submit button active again through javascript of jquery
So I run a test website and have come across a unique issue. I have tests that will reload with a event.preventDefault(); so the page they are on does not reload, but the test question does. ...