0
votes
1answer
20 views
Forms Issue Cross-Domain Posting to MVC Controller using JQuery
I have a very strange issue on my hands.
I have two IIS websites using host headers.
I have some simple code using JQuery and JQuery.forms to post a simple form to a controller. The controller …
1
vote
1answer
89 views
jQuery Form plugin ajaxSubmit callback timing
Hi,
I have the following code bound to the click event of a button:
function submitForm() {
var $submitOK = false;
$('#form1').ajaxSubmit({
beforeSubmit: function() {
…
0
votes
3answers
30 views
targeting a specific form with serialize()
Following on from my previous question, which was so quickly answered by Meder it wasn't funny, there's now an additional question that's popped up in the process of making a reusable jQuery form …
0
votes
1answer
64 views
Jquery - Forms Plugin, Dynamic Tabs
Hi guys,
I am using JQuery UI tabs. When i create a tab using the "$("#" + target).tabs('add', url, title);" method it opens a tab and calls an ajax form correctly..
Now the problem exists when i …
0
votes
5answers
672 views
jQuery Forms - Ajax and normal submit the same form
Hello,
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 …
1
vote
2answers
764 views
Why JQuery Form submitHandler does not refresh its callback?
I am using the JQuery Form Plugin, the JQuery validation plugin and the jqTransform plugin.
I have a hidden form which I make visible to add or edit stuff. Edit or Add actions trigger the next …
1
vote
2answers
646 views
jQuery Form Plugin - How To Change ‘target’ (for response) Value
This is in reference to jQuery 1.3 and jQuery Form Plug 2.25.
Hopefully this is a cakewalk for even an amateur, but I am clueless.
var x;
$('div#response').fadeOut(300,function()
{
// do …
8
votes
3answers
3k views
JQuery Validate Plugin - How to create a simple, custom rule?
How do you create a simple, custom rule using the JQuery Validate plugin (using addMethod) that doesn't use a regex?
For example, what function would create a rule that validates only if at lease one …
0
votes
2answers
2k views
Modifying form values with beforeSubmit with jQuery ajaxSubmit?
I have a form I am submitting using jQuery's ajaxSubmit function from the Forms plugin. I'm trying to add a form name/value pair to the form data just before submission occurs. My plan is to modify …
1
vote
2answers
311 views
Modifying form data before submission
I'm using jQuery in conjunction with the form plugin and I'd like to intercept the form data before submission and make changes.
The form plugin has a property called beforeSubmit that should do …
