Category "forms"

A "progress bar" Form in ms-access will not update when its properties are changed from a loop in a module

I am trying to have a dialog form, or rather a dialog-looking form displayed while importing a big quantity of data in my access database, from a "Document Cont

Clearing input in vuejs form

Just completed a todolist tutorial. When submitting the form the input field doesn't clear. After trying both: document.getElementById("todo-field").res

Form event function triggers jquery function

I have a textbox form that when focused triggers a function, but the problem is this function was inside jQuery function and its not working, see my codes... &l

determining input vs textarea in jQuery

I wish to iterate through a form, adding each element to an area. The problem is that some of these elements are select, input, and textboxes. I know that I can

Deactivating and activating an E-mail form

I'm trying to get the code below to keep an E-mail form deactivated until 6 seconds after the page is fully loaded. What can I do to make it work like that? var

Saving Data from Laravel Form in Bootstrap Modal

i have a bootstrap modal dialog which use laravel form to register a user. Here's the code: <div id="addPenggunaModal" class="modal hide fade" tabindex="-1

FastAPI - How to upload file via form

I am making a REST API that requires uploading files. For testing purposes, I am uploading files through postman, but I don't know how to access the files on se

Open new page using if else statement to check to see if an html form element is equal to a certain word

How do I open new page using an if else statement to check to see if an html form element is equal to a certain word or phrase. Basically, I have a form and if

Is it possible to have a form submit a comma separated list via GET?

Let's say I have a form that contains a whole bunch of check boxes with the same name, c. Each checkbox has an integer value assigned to it. When the form is s

Can you pause a form submission and then restart

Without using any JS libraries, is it possible to pause a form submission, run some code and then restart it? Reason I ask is that I currently have a form that

Django, show ValidationError in template

I create a registation app, where users can register providing a username, email and a password. What I did is make sure that the email field is unique(as you c

Check if form field changes

I have some form fields like <input>, <textarea>, <dropdown> etc. If a user make a change in any form field it should be prompted at once that

HTML input type=file, get the image before submitting the form

I'm building a basic social network and in the registration the user uploads a display image. Basically I wanted to display the image, like a preview on the sam

Selecting div's href's and submitting form?

I have this code in my html: <div id="div1"> <a href="a"> Apple </a> <a href="b"> Orange </a> <a href="c"> Lemon </a>

html-php form submission after validation through JavaScript [closed]

What I intend to do is : first validate a form and then process if some conditions are satisfied. I have pasted the prototype of my code below

POST form data using WinInet c++

I'm trying to make this program connect to a website and submit form data in order to login, but I don't know what I'm doing wrong. I have heard of others like

Javascript anchor href change and form post

I have a form coded like below. Basically the href value for the anchor tag is determined by the value selected in a dropdown. <form name=xyz method=post>

Javascript mouseover event to change form submit button image

I am attempting to dynamically change the "src" attribute of a form submit button via JavaScript by containing the form element within a link in order to captur

How to remove 'autocomplete disabled' from input field

I have a field in which the user is ask to input a year. My html looks like this <div class="form-group {% if form_search2.year_search.errors %} error {% en

How to apply min and max on textarea?

Is there a way in HTML5 forms to add a min and max character to a textarea? It seems I can apply it to a regular input using pattern. <input pattern=".{3,}"