Tagged Questions

1
vote
1answer
156 views

jquery.form plugin, ajaxSubmit and hooking when HTTP 302 received

I'm using the jquery.form plugin and its ajaxSubmit method with great success so far, but now I'm stuck with the way it handles HTTP 302. Let me explain: User submit a form through xhr using ...
1
vote
2answers
2k views

jquery getResponseHeader always returns 'undefined'?

I have a a form that I am submitting via ajax. I am using the jquery form plugin. What I am trying to do is get the 'Location' header which is returned from my server. I can see it in firebug. But ...
1
vote
3answers
4k views

Jquery Form ajaxSubmit not submitting

I am using the JQuery Form extension to submit a form with AJAX. I have the following code: var options = { beforeSubmit: showRequest, // pre-submit callback success: showResponse, ...
1
vote
1answer
1k views

JQuery Ajax Form and Dynamically created form elements not submitting

I'm writing a form that has some text input elements loaded dynamically when a select list is changed. The problem is that when I submit the form those elements are not sent in the data that is ...
0
votes
0answers
40 views

Malsups Form plugin not working in Firefox

This form works in Chrome and IE, but in Firefox, when I click on the Submit button nothing happens. Firebug doesn't report anything. Here's my HTML: <script type="text/javascript" ...
0
votes
0answers
67 views

jQuery form plugin fails to catch response 404, 500 etc. if form enctype set to “multipart/data”

I'm trying to catch server errors (400, 404, 500) upon submitting my form via jQuery AJAX form plugin. (BTW I'm not trying to upload anything) After reading carefully I found out that "statusCode" ...
0
votes
0answers
270 views

How to open pdf in browser tab from ajax call asp.net mvc

I have my controller action method returning pdf file as public FileContentResult GetPDF(string filename) {FileContentResult filecontent= new FileContentResult(Contents, "application/pdf"); ...
0
votes
1answer
53 views

Getting some problem with apply event to dynamic added form in Jquery

I am loading the form in dialog box via jQuery The code is like <form class ="form1" action="" method="post" enctype="multipart/form-data" > ... </form> I am using jQuery form plugin ...
0
votes
2answers
512 views

get value from jquery ajax response without setting async false

I'm using jquery form plugin to submit data to server. Before submitting I'm running server side validation via ajax. so the structure is function validateForm(formData, jqForm, options){ var ...
0
votes
1answer
439 views

jQuery ajaxForm never enters success with file upload on jQuery1.5

I use a jquery form plugin to upload a file and get HTML (or text or anything at all) in the callback. This worked fine until 1.5, but as soon as I converted to 1.5, the callback never happens ONLY ...
0
votes
0answers
272 views

jquery ajaxSubmit not processing <script> tags properly

I have a form that is submitted using ajaxSubmit. When the form is submitted it is processed by a page that returns a jquery .get function on success and the form displaying errors on failure. My ...
0
votes
2answers
399 views

Internet Explorer tries to save script on Ajax Form jQuery plugin submits

My problem is that when I try to submit a form with jQuery Form plugin (http://jquery.malsup.com/form/), with contentType: script, I get "Save as" pop up on IEs, that tries to save my response script. ...
0
votes
1answer
835 views

AjaxSubmit File Upload - Trying to get response $(document).ready() to fire

I'm using the jquery form plugin (http://malsup.com/jquery/form/) to upload a file via ajax which is processed in the background. The upload is working correctly, and I am using ASP.Net MVC to ...
0
votes
3answers
281 views

Using jQuery with form to eliminate spam

I have put a form on a web page where the user can send us data. Unfortunately, the webmaster does get a lot of spam through this form and the valid submissions gets buried. I have used captcha to ...
0
votes
2answers
963 views

JQuery submit form and output response or error message

I want to submit form and show message about result. update_records initializes alert_message to error message. If success I expect that its value is changed. Than update_records outputs message. But ...
0
votes
5answers
2k views

jQuery Forms - Ajax and normal submit the same form

I have a confirm step in one of my pages. Desired action: user clicks 'submit' and an AJAX request is made that does the appropriate action and returns a confirm dialog user 'confirms' and then the ...