Questions tagged [submit]

Refers to the action of sending data to a specific destination.

Examples include HTML form submission and the jQuery submit function.

5127 questions
1
vote
1 answer

Typo3 form submit to another view

I've made an extension in Typo3 6.2 with extbase and fluid. I've 2 actions in my controller - action 1 (single) : simply show an object and a form (some filter for object list) - action 2 (list) : show the same form as in action 1 and treat form…
Chuck Norris
  • 1,045
  • 1
  • 10
  • 24
1
vote
2 answers

Enter key javascript keypress not working

I've got a bit of Javascript which the end goal is for whenever the "enter" key is pressed, a message is appended to my unordered list. Right now, any key that is pressed is appended rather than it just being the "enter" key. For example if I typed…
cja
  • 47
  • 1
  • 11
1
vote
1 answer

Show alert when leaving form except for submit button

I am using the following code to perform a check if a form has been altered when trying to leave the form and show an alert if necessary. Unfortunately I have not yet figured out how to avoid the alert when clicking the submit button.
1
vote
1 answer

JQuery form submit with function not working

I'm having an issue with the jquery function submit for a form : $(document).ready(function () { $('#message').keydown(function(e) { if(e.which == 13 && !e.shiftKey) { $('#edit_message_11').submit(function() { …
fabdarice
  • 845
  • 2
  • 10
  • 23
1
vote
1 answer

php form submit in div fails

after many days of trying to get a previously working php form converted to submitting the variables inside a new div I realized that I'm missing something. Other posts show javascript, but Iv'e never used that before and don't understand the need.…
1
vote
1 answer

Google maps api will not return coordinates on submit

I try to describe my issue as easy as possible.. When I submit a form, I need to call another function. I tried onSubmit, but unfortunately it doesnot work properly, as the function that I need to call is Google Maps API matter getting coordinates…
Jiri Borek
  • 21
  • 3
1
vote
4 answers

Change submit button to close button

How can i change behaviour of button if form submit was successful?
user3770925
  • 183
  • 3
  • 10
1
vote
1 answer

MVC5 Form won't post; submit button does nothing

We are in the process of redesigning the UI in our ASP.NET MVC 5 web application. We're moving to the bootstrap framework, and finally making the switch from aspx views to razor views. I have this form - @using(Html.BeginForm("Dashboard",…
109221793
  • 15,397
  • 37
  • 100
  • 157
1
vote
3 answers

Posting a textarea form with cURL

How would I go about posting a textarea form?
homework
  • 4,547
  • 10
  • 35
  • 50
1
vote
1 answer

Submit using a particular button on Return (Enter)?

A wizard-type forms has two buttons, Back and Next. Back is on the left, Next is on the right. A minimal example is at http://jsfiddle.net/WSwb7/1/ though submitting a form will not work there. I thought making the Next button
Alexander Pavlov
  • 545
  • 4
  • 11
1
vote
1 answer

Refresh page after submit doesn't work

I have a weird problem. I have multiple forms on one page. After submitting a form I want to refresh the page. The problem is that with my code the page is refreshed but doesn't submit the form. If I delete the refresh bit, form is submitted. Do I…
Meules
  • 1,140
  • 4
  • 20
  • 60
1
vote
2 answers

refresh page after form download submit

I have a form that as an action returns a download. The problem is that the page will pop-out the download, and you can save it, but it will not allow another form submit. i was thinking of doing a page refresh after the submit. But i cant figure…
Gabriel Solomon
  • 26,777
  • 15
  • 55
  • 76
1
vote
3 answers

CSS Hidden DIV Form Submit

Using CSS, when a link is clicked it brings up a hidden DIV that contains a form. The user will then enter information and then submit the form. I'd like the hidden DIV to remain visible, and a 'success message' to be displayed after submission. …
Michael
  • 2,216
  • 14
  • 46
  • 80
1
vote
2 answers

form button, ajax, enter key, form submit

i have the above on a page, if i click the button, my ajax function works fine. however, if i press "enter", the form submits but nothing happens - no doubt as the function is called "onclick" is there any way to change this so the user may click…
user19284129
  • 33
  • 1
  • 5
1
vote
1 answer

Can I have multiple submit buttons in R shiny?

In my R shiny application, I would like to have one button to submit one set of inputs (which affect one portion of the output) and another one to submit the remaining inputs (which affect a different portion of the output). The code in the widgets…
user3434580
  • 93
  • 1
  • 2
  • 6
1 2 3
99
100