jquery-post Questions

4

Solved

I have a textarea for users to input comments and a button to submit using jQuery’s .post() and JSON: $('#submit').click(function () { var comment = {}; comment.Author = $("#author").val(); com...
Thundercloud asked 3/7, 2010 at 23:16

7

Solved

I am working on a Laravel 5 app that has CSRF protection enabled by default for all POST requests. I like this added security so I am trying to work with it. While making a simple $.post() request...
Amoy asked 9/2, 2015 at 19:32

2

Solved

I have a wrapper function used to send requests to a server, I need to do something specific if the server returns a code of 401 and I'm not sure how to get this data $.mobile.showPageLoadingMsg(...
Mommy asked 14/12, 2011 at 23:38

4

I've got an odd case where my jquery.post returns a code #200 (OK) but the error-handler is hit. This is my MVC WebAPI serverside code (all it does is returning code #200 OK): [HttpPost] public ...
Trawl asked 28/10, 2012 at 19:32

4

I'm using the jQuery Post function, for example: var fooVar = true; var barVar = 1; var bazVar = "baz"; $.post("url", { foo: fooVar, bar: barVar, baz: bazVar }, function(){ alert("success"...
Divulge asked 20/2, 2014 at 14:9

4

Solved

i am unable to get collection value during post in mvc 3. it is returning null. $.post("/Work/Post", { vm: $('#myForm').serializeArray(), 'collection': ['a', 'b', 'c'] }); //Or var data = $('#...
Gerous asked 8/8, 2012 at 15:32

2

I want to pass Authorization header while POSTing data to server. I tried $.ajax({ url : <ServiceURL>, data : JSON.stringify(JSonData), type : 'POST', contentType : "text/html", dataTy...
Ritchey asked 22/1, 2014 at 6:56

1

The following does not redirect my page: Here is the MVC code: [HttpPost] public ActionResult GoHome() { return RedirectToAction("Index", "Home"); } Here is the ajax post: $.suppo...
Timbuktu asked 15/11, 2013 at 21:54

1

Solved

I'm trying to improve my jQuery performance and I've noticed it runs faster in Chrome than in other browsers. Does it make sense when it is just an AJAX call to a PHP file? In order to test it, I ...
Clabber asked 28/3, 2013 at 11:41

2

Solved

When user clicks a specific item, I use jQuery's post method to update something in the database: $.post("/posts/" + post_id + "/update_something", { some_param: some_value }, success_handler)...
Bulganin asked 16/2, 2012 at 5:10
1

© 2022 - 2024 — McMap. All rights reserved.