2
votes
ASP.NET MVC and JQuery get info to controller
It has to do with the way you're structuring your request. Your JQuery call is sending the data to the AddLink action on the User controller as POST data, which means in your C# code, you'll access …
1
vote
JQuery $.ajax “async: false” bug?
You're encountering a scoping problem here. The URL variable in your JS code is declared as via the var keyword inside the scope of the download function. This means that only code inside the downl …
0
votes
Asynchronous cross-domain POST request via JavaScript?
YUI3's IO object offers cross-domain requests, however it does so us …
0
votes
Support for encoding query string or POST data in YUI ?
YUI3 has the io-form module, which you can instantiate in your call the use. It allows you to write code like this:
YUI().use('node', 'io-form', function(Y) {
Y.get('#formId').on(' …
