325 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
-2
votes
2
answers
83
views
Bootstrap 5.3.5 disable submit button doesn't work [duplicate]
I have the following form:
<form id="chatForm" name="chatForm" action="{{url_for('home.invoke')}}" method="post">
<div id="message-box&...
0
votes
1
answer
650
views
SwiftUI: How to trigger the onSubmit modifier?
They decimalPad keyboard does not have a return button. So I like to include one using the keyboard toolbar. But how can you create a Submit Button?
struct ContentView: View {
@State private var ...
0
votes
0
answers
30
views
HTML/JavaScript: Execute form submit checks on button-press; is it possible in an elegant way? [duplicate]
I wrote an input form that has input elements with the required attribute set.
So when pressing an <input type="submit" /> button, empty fields (and other violations) are complained ...
0
votes
0
answers
22
views
Javascript form submit/click a button to link to another page [duplicate]
I'm writing some automation script to click a button (which directs the browser to another page), but having problem getting the script to work. Note that there is no unique id to get element for.
The ...
0
votes
0
answers
22
views
Problems with HTML Form and using PHP with Wamp [duplicate]
I wrote a working html file, and I want to send the information to a PHP, but the format is wrong, and I don't know how to fix it. I'm also new to this too.
This is the html and I'm pretty sure it ...
2
votes
1
answer
120
views
grails: specify form action with button vs input type=submit / g:actionSubmit
I have a form with multiple buttons which submit the form to different controller actions.
This works fine for <g:actionSubmit, but I would like to use <button type="submit" so I can ...
0
votes
1
answer
53
views
Action on document.getElementById is not redirecting me to created upload link
I have an HTML page where users choose files and upload them to a URL through pressing a submit button. This button redirects the user to the URL while also submitting the file to the URL. Currently, ...
1
vote
0
answers
1k
views
Google play organization Developer verification
Hi I'm trying to verify my organization developer account on google play console, I have all the necessary documents but after filling the forms and uploading all the document, the submit button is ...
0
votes
2
answers
468
views
Once the "Submit" button is clicked, the program will output the date onto the screen
I'm new to C# and HTML and trying to write an expiration date calculator for our labs using Blazor. I have the logic all figured out behind the output besides the specific date format according to the ...
0
votes
0
answers
60
views
Unable to Press Submit Button
The submit button is supposed to allow me to press it after I type something in the text field. However, It just stays greyed out. Any suggestions?
document.addEventListener("DOMContentLoaded", () ...
0
votes
1
answer
337
views
How do I add a comment into an IIS Log file?
I have a simple html file on an IIS server that asks a user to enter a code:
<form action="educational_page.html" onsubmit="myFunction()">
Enter CODE: <input type="...
0
votes
2
answers
1k
views
Trigger a button with both Click and Enter key for fetching Javascript
I've been looking for different solutions on the site, but none seem to work for me.
I need to trigger a submit button with Enter keypress event and mouse click, in order to fetch data from a weather ...
1
vote
2
answers
2k
views
How to get the URL of a type 'submit' button during Cypress test?
Below is a submit button on the page I am trying to test.
When you click this button, a pop-up window is displayed. The URL of this pop-up is https://login.microsoftonline.com/........etc.
This sign ...
0
votes
1
answer
33
views
How come my simple checkbox form is not completing its action upon submitting
Its a simple form with a action that should go to the "nextPage.html".
it only has 1 input which is a checkbox and a submit button.
const form = document.getElementById('form')
const ...
0
votes
1
answer
1k
views
Inline error message still displayed after the user adds text to input fields
When users click submit, I've coded an error message to appear under each input field that is missing a value using DOM selectors. I also disabled the email file that opens when submit is clicked, ...