[jQuery] Jquery form plugin can't find resolution

2010-02-14 Thread NHARRY
I have a form that is loaded using .load it is then posted using the jquery form plugin. But it won't post see code: script type=text/javascript $(document).ready(function() { //shows loading screen whilst posting via ajax $().ajaxStart($.blockUI).ajaxStop($.unblockUI);

[jQuery] [jQuery-Form-Validator] - Problem with rules

2010-02-06 Thread niagara
Hi guys. This is my code: $().ready(function() { $(#previ).validate({ submitHandler: function() { if(confirm('Sure?')){ $(form).submit(); return true; }else{ return

[jQuery] jQuery Form Plugin

2010-01-13 Thread solich
Hello. I have a form: form method=post id=mujform1 action=inc/update_homepage.php fieldset label for=NadpisstrongNadpis:/strong/labelbr / input id=Nadpis name=Nadpis size=60 maxlength=250 type=text value=?php echo $nadpis; ? /br / label for=TextstrongText:/strong/labelbr / textarea id=content

[jQuery] Jquery form and validation plugins

2010-01-12 Thread none
Hi everyone. Immediately apologize: to be a lot of code… I have a form to add users: form action=http://localhost/ci_doctrine/signup/submit; method=post id=myForm plabel for=usernameUsername: em/em/label input type=text name=username value= id=username / /p plabel for=passwordPassword:

[jQuery] jQuery Form Processing

2010-01-12 Thread Seth
Hello, I'm trying to use this method to process a form and return an alert without navigating to a new page for the form processing. http://jquery.malsup.com/form/#getting-started I have this in my head statement: script type=text/javascript src=js/jquery-1.3.2.js/script script

Re: [jQuery] jQuery Form Processing

2010-01-12 Thread Karl Swedberg
Your selector is for an ID: $('#autoSumForm') But your form has no ID: form name=autoSumForm action=posttime.php method=post Try adding an ID to the form: form name=autoSumForm id=name=autoSumForm action=posttime.php method=post --Karl Karl Swedberg www.englishrules.com

Re: [jQuery] jQuery: form wizard plug-in plug-in: Validation

2009-12-26 Thread p0rg1
Yes this can be done by just using some css for the error, input and image. The error message that is inserted after the input field looks like this. label for=cname generated=true class=errorThis field is required./label so you should be able to style it using some css such as label .error{

[jQuery] jQuery Form plugin and IE

2009-12-13 Thread michaelF
I've been working on an upgrade to my site that includes a quick form for one or two image uploads and contact info. the form is included via php in some of the internal pages. I've tested in several Browsers, but have problems with IE. it seems to process the js but doesn't submit the form. i'm

[jQuery] jQuery: form wizard plug-in plug-in: Validation

2009-12-11 Thread factoringcompare.com
Hi, I’m using the Validation plug-in with Form Wizard (http:// home.aland.net/sundman/). I want to change the position of the error message from directly following the element. To explain; following each input I have a tool tip image. I would like the error message to either appear directly

[jQuery] Jquery form plugin and accessing formData

2009-11-25 Thread Mark J
I am using the excellent jquery form plugin to obtain form data, do some pre-submission processing, and pass the altered form on to a django view via ajax for some additional processing. I have a jQuery form plugin beforeSubmit function to basically divide a form field by 12 if another

[jQuery] jQuery Form Plugin

2009-11-15 Thread BarsMaster
Firs of all, perfect work. But I have problems with file uploads in opera 10. I found the reason. It is here: if (--domCheckCount) { // in some browsers (Opera) the iframe DOM is not always traversable when // the onload callback fires, so we loop a bit to accommodate cbInvoked = 0;

[jQuery] jQuery form plugin and document.domain failure

2009-11-11 Thread Vaclav Kohout
The situation comes like this using form plugin from http://plugins.jquery.com/project/form : $('#photoform').ajaxForm({ dataType : 'json' , success: function(data){ alert( data.result ) ; }, error: function(){ alert('error');

[jQuery] jquery form and myfom

2009-11-09 Thread Lord Gustavo Miguel Angel
hi, jquery form only work if name of form is myform? is correct afirmation? thank´s

Re: [jQuery] jquery form and myfom

2009-11-09 Thread Charlie Griefer
On Mon, Nov 9, 2009 at 2:16 PM, Lord Gustavo Miguel Angel goosfanc...@gmail.com wrote: hi, jquery form only work if name of form is myform? is correct afirmation? there are no such restrictions/limitations. Any page element can have any valid name value (any valid value for any attribute,

Re: [jQuery] jquery form and myfom

2009-11-09 Thread Lord Gustavo Miguel Angel
then... what alternative have? thank´s From: Charlie Griefer Sent: Monday, November 09, 2009 7:18 PM To: jquery-en@googlegroups.com Subject: Re: [jQuery] jquery form and myfom On Mon, Nov 9, 2009 at 2:16 PM, Lord Gustavo Miguel Angel goosfanc...@gmail.com wrote: hi, jquery form only

Re: [jQuery] jquery form and myfom

2009-11-09 Thread Charlie Griefer
:18 PM *To:* jquery-en@googlegroups.com *Subject:* Re: [jQuery] jquery form and myfom On Mon, Nov 9, 2009 at 2:16 PM, Lord Gustavo Miguel Angel goosfanc...@gmail.com wrote: hi, jquery form only work if name of form is myform? is correct afirmation? there are no such restrictions

Re: [jQuery] jquery form and myfom

2009-11-09 Thread Lord Gustavo Miguel Angel
ok. thnks´ i treid it. From: Charlie Griefer Sent: Monday, November 09, 2009 7:41 PM To: jquery-en@googlegroups.com Subject: Re: [jQuery] jquery form and myfom name your elements with whatever name you want. form name=gustavo id=xyz class=blah can be selected via: $('#xyz') $('.blah

Re: [jQuery] jquery form and myfom

2009-11-09 Thread Charlie Griefer
*Subject:* Re: [jQuery] jquery form and myfom name your elements with whatever name you want. form name=gustavo id=xyz class=blah can be selected via: $('#xyz') $('.blah') (this will return an array of -all- elements of class blah) $('form') (this will return an array of -all- form elements

[jQuery] jquery form...

2009-11-09 Thread Lord Gustavo Miguel Angel
hi. i´m try with this example: http://www.malsup.com/jquery/form/#json but Alert(data.message) return undefinited why? tk-.

Re: [jQuery] jquery form...

2009-11-09 Thread Matt Quackenbush
Why? Simple. Because the variable does not exist. :D On Mon, Nov 9, 2009 at 7:09 PM, Lord Gustavo Miguel Angel wrote: hi. i´m try with this example: http://www.malsup.com/jquery/form/#json but Alert(data.message) return undefinited why? tk-.

Re: [jQuery] jquery form...

2009-11-09 Thread Lord Gustavo Miguel Angel
i don´t understand i write this: ?php echo '{ message: ' . $_POST['message'] . ' }'; ? From: Matt Quackenbush Sent: Monday, November 09, 2009 10:20 PM To: jquery-en@googlegroups.com Subject: Re: [jQuery] jquery form... Why? Simple. Because the variable does not exist. :D

Re: [jQuery] jquery form...

2009-11-09 Thread Lord Gustavo Miguel Angel
: 'json', (look datatype original dataType' upcase(T) tk From: Matt Quackenbush Sent: Monday, November 09, 2009 10:20 PM To: jquery-en@googlegroups.com Subject: Re: [jQuery] jquery form... Why? Simple. Because the variable does not exist. :D On Mon, Nov 9, 2009 at 7:09 PM, Lord Gustavo

[jQuery] Jquery Form Plugin not sending name of button in Safari

2009-11-04 Thread petersendidit
I have a form with 2 button elements in it. Button elements are used because they are much easier to style as needed. form id=testform method=post name=testform input type=text value= name=firstname id=firstname/ button class=button ci_btn_shdw value=Save As New name=_event

[jQuery] Jquery form

2009-11-02 Thread Olabri
Hi I'm using jquery with the form plugin. However since i have to also use prototype (for a snapin chat) so I have to use jQuery.noConflict (); This seem to break the form plugin. Has anyone else managed to combine these two? code is like this: script type=text/javascript

[jQuery] Jquery form

2009-11-02 Thread Olabri
please ignore previous post. found the problem

[jQuery] jQuery form Validation plugin with JSP

2009-11-02 Thread Felix
I have a static html page for testing and the remote field is wired correctly with email as the following rules: { FirstNameEdit: { required: true }, LastNameEdit: { required: true }, EmailEdit: { required: true, email: true, remote: emails.jsp } ,

[jQuery] jQuery form plugin?

2009-11-01 Thread Jim Byrnes
I am new to jQuery and really new to the form plugin so I must be missing something simple but I can't figure out what is wrong. I have this form: div class=print h3Print Items Due Report/h3 form id=printForm action=printRange.php method=post Date to Printbr /

[jQuery] jQuery Form plugin and jQuery File Tree plugin

2009-10-26 Thread Julien
Hi, I can upload a file with this setup : - the form.js jQuery Form plugin script http://jquery.malsup.com/form/jquery.form.js?2.33 - the files.php which upload my files and print a validation message ... move_uploaded_file($_FILES[file][tmp_name], $_POST

[jQuery] jQuery form plugin

2009-10-17 Thread Boray Eris
http://www.pidizayn.com/virtualsub/jqform First form is ok. But second one that pulled with jquery not working. What's wrong?

[jQuery] jQuery Form Plugin - File upload with JSON response

2009-10-14 Thread Florent Paillard
Hi, I'm trying to use the jQuery Form Plugin for file upload with JSON response (basically, I need to get an uploaded file ID back from the server after upload) I have a problem when getting the data from the iframe back to the javascript in the main page because the json string is wrapped in a

[jQuery] JQUERY form submit

2009-10-06 Thread kknaru
hi i have something like this: // javascript-- $('a').click(function(){ $('div').load('form.html',function(){

[jQuery] Jquery Form plugin : Multiselect problem

2009-09-11 Thread kaiser Zaido
Hi, I need to check all multiselect values before posting form. How i can do it? I'm trying to use beforeSubmit function, but changes that I do there doesn't applying to the formData. (Form plugin send information that was grabbed before beforeSubmit function).

[jQuery] jquery form plugin upload problem

2009-09-11 Thread Jack Killpatrick
Hi All, Hoping someone can help me out with this, been stuck on it for a while: I'm using the latest version of the jquery form plugin (from MAlsup) for file uploading. The upload works: the server call happens, the file data makes it there and the server returns a value, in this case just a

[jQuery] JQuery Form - Ajax - Please HELP ! ! ! ! ! ! !

2009-09-02 Thread huntspointer2009
///Comment: Can someone help me do the following: create a function that collects ALL of the form's text field's Values, along with their corresponding ID, and create an Array like this: Example: var dataString = (item_01=123, item_01=456, item_01=789) then take the 'dataString' Array,

[jQuery] jquery form plugin. IE doesnt work

2009-08-22 Thread markstegg...@googlemail.com
Hello, Im using ajaxForm to submit my contact form at futurekode.com: $('#contactForm').ajaxForm(function(data) {} -- This works fine in all browsers except IE7/8. IE error says theres a problem with jquery 1.3.2 and highlights this line: returnsubmit===T.type Could someone take a look at

[jQuery] jQuery Form Plugin ajax submit

2009-08-21 Thread Chris Hall
Using the following code: $('.input_all').attr(disabled, disabled); for input texts with the class=input_all seems to break jQuery forms ajax submit. How can I fix this?

[jQuery] jquery form plugin ajaxSubmit / fieldvalue inconsistent behaviour [jquery form]

2009-07-31 Thread rekna
if you have in html the following: input type=checkbox value=true name=check/ input type=hidden value=false name=check/ ajaxSubmit will submit : check : true check : false $(#check).fieldValue() will return [ true ] so, this is inconsistent with the result of ajaxSubmit, it should return

[jQuery] [jquery form plugin] run function in success event

2009-07-30 Thread orangdalam
i wrote this code: function HidePreloader($idPreloader){ $($idPreloader).hide(); } $(#formPassword).ajaxForm({ target:'#container', clearForm:true, success: HidePreloader(#bluePreloader) });

[jQuery] jQuery Form Validation

2009-07-26 Thread Tuppers360
Hi there just wondering if I can get some help from you guys? I have some code as per: // validate signup form on keyup and submit var validator = $('form').validate({ event: 'keyup', rules: { '%= ddlRank.UniqueID %': {

[jQuery] jQuery Form plugin with Yahoo UI

2009-07-17 Thread debussy007
Hi, When I add the jquery.form.js plugin from malsup, my Yahoo UI TreeView won't render anymore ... There seems to be some conflict. Is there any workaround for that ? Thank you for any help. -- View this message in context:

[jQuery] jQuery Form Plugin help

2009-06-22 Thread capnhud
I am having a problem using the jquery Form Plugin. I have a form that is setup to animate the errors when on submits incorrect information or gives you a succes message when you enter correct information. Howvever my problem is that the messages do not animate when being displayed they just pop

[jQuery] jquery form plugin and firebug conflict

2009-06-11 Thread Val
Hi, I am using Jquery form plugin to interact with PHP server code. When firebug is on, the code correctly sends the data and processes the reply from the server in Json format. Here's the code: var options = { beforeSubmit: showRequest, //

[jQuery] jQuery Form Plugin with a submit button outside of the form

2009-06-08 Thread johnHoysa
I have my form working great as long as my submit button is contained within the form tags. But the design calls for the submit button to be outside of the form. Any suggestions? Sample code and diagrams are below. I appreciate your help! John Hopefully this will help show you what I need --

[jQuery] JQuery Form plugin AND DataTables plugin

2009-06-04 Thread brilang
I am using the DataTables Plugin on a table. Each row in the table contains a form. I am using the sAjaxSource initialisation option to retrive a JSON string from the server. I now want to add the JQuery Form event ajaxform to each form in the table. I think I have to use JQuery's Live event but

[jQuery] JQuery Form Plugin

2009-05-20 Thread Dez
I've been using the Form plugin for a while a just recently (within the last week) something has gummed up the works and I'm not sure what. Here is my code. $().ready( function(){ $('#productListForm').ajaxForm({ target: '#toolList', error: function(request, textStatus,

[jQuery] jQuery form submission IE6 problems - possibly event listener

2009-05-05 Thread IanDev
Hi All, I'm having problems getting a simple poll to work correctly in IE6 - unfortunatey the form always trys to submit, ignoring the jQuery script below: $(function() { $('.error').hide(); $(#button).click(function() { $('.error').hide(); var pollid = $('#pollid').val();

[jQuery] jQuery form plugin file upload failure

2009-04-27 Thread Jim
I'm using the latest version of the form plugin from http://jquery.malsup.com/form/ and am having problems with a form that has an input of type file. I have read all the info about how to return JSON and such, how an iframe is used, etc. I've Googled around and searched this list, but m not

[jQuery] jquery form plugin not working in IE8

2009-04-16 Thread adaa
I'm using http://malsup.com/jquery/form plugin but it is not working on IE8 but all other browsers. Pls help.. thanks adnan

[jQuery] jQuery Form Plugin Problem: IE7 gives Object doesn't support property or method

2009-04-13 Thread MeanStudios
Greetings, I'm using jQuery 1.3.2 and jQuery Form Plugin 2.25. My code: $('#msre_file').change(function(){ el = $(this); target = el.next(); $('#entryform').ajaxSubmit({ url: '?php echo $cp_url; ?ms_rel_file=upload',

[jQuery] jQuery Form Validation

2009-04-11 Thread NobitaNobi79
Hi, I am new to jQuery. I follow the example on http://docs.jquery.com/Plugins/Validation/Methods/email to add rules to a form validator. When I modified the rules to email: true (required: false), the script seems to stall there, no error message nor a check. Can someone tell me if I am doing

[jQuery] jquery form plugin problem

2009-03-28 Thread dth
Hi, I'm trying to use the form plugin from malsup.org to submit a form with ajax, but it does not seem to work with options. This works: $(#loginform).ajaxSubmit(function(obj, statusText) { alert(obj);

[jQuery] jquery form plugin problem

2009-03-28 Thread dth
Hi, I'm having a problem with the jquery (ajax) form plugin. It says on the page (malsup.com) to seek help here :) When I invoke ajaxSubmit() with a function it is called on success. But when I invoke ajaxSubmit() with a Options object with success: function() {..} the function is not invoked.

[jQuery] jquery form plugin problem

2009-03-28 Thread dth
Hi, I'm trying to use the form plugin from malsup.org to submit a form with ajax, but it does not seem to work with options. This works: $(#loginform).ajaxSubmit(function(obj, statusText) { alert(obj);

[jQuery] JQuery form validation not working with jsp

2009-03-26 Thread Lucky
Hi, I am new to JQuery , can anyone tell me any example ,how to do form validation for JSP. I have two text box one for Subject and another one for email Id . Thanks, Lucky

[jQuery] jQuery Form plugin, the checkbox and the formData array

2009-03-22 Thread MarkZ
Hi I am using jQuery's 'Form Plugin' (available at http://www.malsup.com/jquery/form) to submit my form. Just before submitting form the plugin runs (using 'beforeSubmit:' option) validation callback function. This CB function uses 'formData' - an array of objects representing the name and value

[jQuery] JQuery Form Validation Fancybox

2009-03-10 Thread MonkeyBall2010
You'll have to forgive me if this question sounds easy but I am fairly new to jQuery so I'm still learning things here. I'm trying to do the following: -Display a signup form with the Fancybox plugin (working) -Validate the form, currently using the bassistance Validation plugin (working)

[jQuery] jQuery Form Plugin Ajax Problem

2009-03-05 Thread makrohaus
Hi. I have a form and i submit it with: $(#form_ajax).ajaxSubmit(); My problem is that some of the inputs are loaded on an action via ajax. When i submit the form the inputs which are loaded later are not submitted. Has anyone any idea? Thanks a lot!

[jQuery] jQuery Form Plugin not working in Mozilla 3.0.6!!

2009-02-25 Thread antcj...@gmail.com
Hi, I just downloaded jquery.form.js from http://malsup.com/jquery/form/#download The following code works fine in IE (The returned XML from server is displayed through alert() ) But when I use the same code in Mozilla 3.0.6, It fails. ( I am getting redirected to the sell.php5 page ) Can

[jQuery] jQuery Form Plugin ROOKIE in need of help :(

2009-02-25 Thread Brian Long
Hey everybody - I'm definitely an amateur, but I have a pretty good understanding of PHP / MySQL / Firebug / FirePHP so I think we can work through this. If using the standard form plugin model - I have the callback: function showResponse(responseText, statusText) {

[jQuery] jQuery Form Plugin redirects even if I use return false

2009-02-23 Thread antcj...@gmail.com
Hi all, I am using jQuery Form Plugin to submit a form to my php. I am using ajaxSubmit to achieve the same. But when I used it like this, --- $(document).ready(function() { var options = { target:

[jQuery] jQuery Form Plugin redirects even if I use return false in $('#myForm2').submit(function()

2009-02-23 Thread antcj...@gmail.com
Hi all, I am using jQuery Form Plugin to submit a form to my php. I am using ajaxSubmit to achieve the same. But when I used it like this, --- $(document).ready(function() { var options = { target:

[jQuery] jQuery Form Plugin

2009-02-19 Thread Paul
Hi there, I am using jQuery Form Plugin with Matt's Script Formmail, and I simply cannot get it to work. Rather than showing up with the ajax form, it still just default redirects me to a success or error page. I am not jQuery expert, but I was hoping someone can point me in the right direction,

[jQuery] jQuery Form Plugin

2009-02-19 Thread Paul
Hi there, I am using jQuery Form Plugin with Matt's Script Formmail, and I simply cannot get it to work. Rather than showing up with the ajax form, it still just default redirects me to a success or error page. I am not jQuery expert, but I was hoping someone can point me in the right direction,

[jQuery] Jquery Form Plugin issues

2009-02-18 Thread Daniel
I'm going nuts here, and I think i've been staring at this far too long. I have done more than one of these in my day, but for some reason this just isn't working. I'm hoping a fresh set of genius eyes can help me out here. Everything has been checked for validation and so on. Doesn't work in IE

[jQuery] Jquery form submission

2009-01-24 Thread Narinder
Hi, I am using the following binding to submit the form using ajaxSubmit(). This works if the user clicks on the submit button. But unfortunately, i am dealing with third party form content which itself submits the form using form.submit() event in which case the following binding does

[jQuery] jQuery Form Validator

2009-01-22 Thread marzapower
I've written a small jQuery Form Validator plugin, of which you can find info at: http://www.marzapower.com/blog/show/250 Please, download it, try it and let me know what you think!

[jQuery] jQuery Form Plugin - after ajaxSubmit call, ajax submitting seems to be disabled

2009-01-12 Thread Isaac Raway
I have a situation where I have a form that remains on a page even after a successful submit - it is used to add items to a list of existing items. After submitting the form, successfully, the backend responds with a blank HTML form. This loads correctly after the call to ajaxSubmit. However

[jQuery] JQuery Form Validation and Insert into Database problem

2008-12-26 Thread avances
I have two scripts, one validates the form and the other enters the data into a SQL database without a page refresh. Both scripts work fine on there own... How can I combine them so the form validates and then inserts when form is free of errors. Please see the two scripts below. I suspect it be

[jQuery] jQuery Form and jQuery UI Submission Problem

2008-12-02 Thread jcokos
I'm trying to something that should be pretty simple: Open up a jquery-ui modal dialogue with a form in it. When the user submits the form, it shows the server output right there in the open dialogue. User closes it, and goes back to the screen where they just were. I can get it to pop the

[jQuery] jquery form plugin: fieldValue vs. val

2008-11-27 Thread Stanislav Ievlev
Greetings! I've seen http://docs.jquery.com/JQuery_1.2_Roadmap#Form.2FField_Serialization http://docs.jquery.com/Release:jQuery_1.2/Attributes. Is fieldValue() still better then standard val()?

[jQuery] jQuery Form Plugin using keyUp() or change() instead of submit

2008-10-27 Thread brian mahoney
Is there a way to get the jQuery Form Plugin to work with a keyUp() or change() instead of having to use a submit button?

[jQuery] jQuery Form Plugin - success callback function isn't called

2008-10-23 Thread Sebastian
Hey guys, I'm working with the jQuery Form Plugin and I'm having some trouble with it. In my HTML I have a button, which, when clicked, inserts a form via jQuery. To then register the form's submit event, I use the livequery plugin in my (document).ready function: (document).ready(function($) {

[jQuery] jQuery Form Plugin - File Upload Issues

2008-10-12 Thread JustinScheetz
I have a form that works perfectly until I try to upload a file, please check out: http://freshbump.scheetzdesigns.com/ Click the big blue Add the Next Image button and play with the form. If you don't add a file to upload, it works. Once you add a file, it's a no-go. There is documentation on

[jQuery] jQuery Form Plugin

2008-10-02 Thread André Cassal
Hey Folks, Can I cancel a connection during an upload? I'm using this form plugin http://www.malsup.com/jquery/form/ and a dialog showing the process, but the dialog needs to have a cancel button to trigger a client-side cancel. As this plugin uses an iframe to target a form, I need just

[jQuery] jQuery Form Plugin - success callback problem with FF/Chrome

2008-09-29 Thread Clemens
Hi, I'm using the jQuery Form Plugin to submit my form (#load), which then loads data from the server. Heres the JS: jQuery().ready(function() { // ... some code jQuery(#load).ajaxForm({ dataType: json, success: function(data) {

[jQuery] Jquery Form Plugin - form tags are removed

2008-09-21 Thread theaska
I am using the Jquery Form pluging version 2.12 to submit a form with a response of another form: script $(document).ready(function(){ $([EMAIL PROTECTED]'formHello']).ajaxForm({ success:function(response){ $(div#formContainer).html(response); }

[jQuery] jQuery Form Plugin

2008-09-13 Thread René
I'm trying to use the beforeSubmit callback of the jQuery form plugin to check some values with the server before submitting the entire form, which can include a large file upload (which would be annoying to upload, and then fail due to other submitted values being invalid-- hence the pre-submit

[jQuery] JQuery Form Plugin and json

2008-08-29 Thread Stefan Sturm
Hello, I'm using the jQuery Form PlugIn( http://www.malsup.com/jquery/form/ ) to handle my Forms. I like it, but I have a question about an improvment: At this time all form fields are send using post, but it wold be nice, to send all form fields json encoded as one post parameter. Is there a

[jQuery] JQuery form plugin not uploading files

2008-08-19 Thread [EMAIL PROTECTED]
Hello, this may be a stupid question, but im trying to make an upload from a form with the form plugin (excelent btw), the form data is sent to a DB through a php script. Here is the form: form action=upload_contrib.php method=post enctype=multipart/ form-data id=form_contribs

[jQuery] jquery form multiple php variables

2008-07-12 Thread Tom Shafer
Hi, I am trying to use the jquery form plugin and i have 3 form fields i need to go to php and come back and be inserted into a list. I am having trouble getting more than 1 php variable to return. here is the code example i am using $('#addLinks').ajaxForm({ // dataType identifies

[jQuery] jquery form multiple php variables

2008-07-12 Thread Tom Shafer
Hi, I am trying to use the jquery form plugin and i have 3 form fields i need to go to php and come back and be inserted into a list. I am having trouble getting more than 1 php variable to return. here is the code example i am using $('#addLinks').ajaxForm({ // dataType identifies

[jQuery] jquery form plugin - post method do not work in firefox3

2008-06-18 Thread pratikspace
Hi guys, I am just testing my application on firefox3 and found that form data after doing post do not get submitted correctly ... I am using APACHE::ASP mod perl. so following code is combination on perl and javascript. And data posting is done by jquery form plugin. Here is my simple test

[jQuery] jQuery Form Plugin Action with #

2008-05-14 Thread Dominik Weiss
Hi, I'm using the ajaxSubmit() function to submit a form which has action=index.php#content_jump. The requested URL will be something like index.php#content_jump?foo=barbar=baz - which is an invalid URL. For the moment I monkeypatched the source to remove the named anchor (line 59 of

[jQuery] JQuery Form Plugin returns nothing in Opera

2008-05-08 Thread dkosarev
I've got a form that uploads a file. It's an AJAX form, initialized by the following code: $(document).ready( function() { $('#filer').ajaxForm( { target: '#vars', beforeSubmit: function(formData, jqForm, options) { alert('sending'); }, success: function(responseText, statusText) {

[jQuery] JQuery Form Plugin returns nothing in Opera

2008-05-08 Thread Kosarev Denis
Hello, Mike! You saved my day! :) This version worked perfectly for me! Thanks for the fast reply! Thursday, May 8, 2008, 8:05:19 PM, you wrote: I've got a form that uploads a file. It's an AJAX form, initialized by the following code: $(document).ready( function() {

[jQuery] jQuery Form Plugin file upload problem

2008-05-04 Thread dtc
Hi, I'm attempting to use the jQuery Form Plugin on a page that has multiple forms. The particular form I am using to allow the uploading of files is the third form on the page. I'm also using that form within a modal dialog box, using the SimpleModal jQuery plugin. I have a Java Servlet

[jQuery] jQuery Form Builder

2008-04-20 Thread Web Specialist
Hi all After some search I found 2 examples about jQuery Form Builder: - http://www.phpletter.com/form_builder/demo.html - http://elpaso.homelinux.org/formbuilder/ All very nice but impossible to download form builded. Somebody knows another examples related to Form Builder in jQuery? Cheers

[jQuery] jQuery Form Plugin target confusion

2008-04-08 Thread Iasthaai
I'm using the jQuery form plugin and specifying my target as so: $(function() { var _options = { target: $( this ), beforeSubmit: function(data, set, options) { alert( $(set).attr( 'action' ) ); } } $( '.form' ).ajaxForm( _options ); }); I've also

[jQuery] jQuery Form Plugin (jqForm) problem on beforeSubmit callback

2008-02-24 Thread Nazgulled
My question is pretty simple... I have the code posted above and it doesn't work. To test the problem, load the page (of course lol), click on Submit and you'll see a message stating what the script is going to do next, then, click on Show!. You'll see the value null and I don't understand why, I

[jQuery] jquery form plugin submitting for multiple times after DOM is appended

2008-02-23 Thread pedalpete
I'm using the jquery form plugin from a form which is retrieved via ajax. I have multiple forms on the page. I'm using .livequery to make sure the form is only requested once, but didn't realize my problem is that the submit is actually occuring more than once. I've tried adding .livequery to

[jQuery] jQuery Form Validation Plugin with Rails

2008-02-22 Thread jmcervera
Hello, This is my first post in this group. I am trying to use the Form Validation Plugin with Ruby on Rails, and I can´t make it work. It seems only working with forms using the 'get' action, not with 'post. An this goes against the REST principles of the architecture I am using. Is there some

[jQuery] jQuery Form Plugin help

2008-02-22 Thread hcvitto
hi i'm trying to use the jQuery Form Plugin from http://www.malsup.com/jquery/form/ it's apparently easy to use but at my first try i can't make anything out of it!! this is the page i'm working on http://www.eco-way.it/projects-and-communication/extra/curriculum.php In my comuni.js i use

[jQuery] jQuery Form ajaxForm submit to webservice gets redirected to web service URL output

2008-01-23 Thread Chris W
Hello, If anyone can help with this I'd really appreciate it. I am using the jQuery Form plugin to submit the contents of a Form via Ajax to a Web Service. The Web service resides on a different domain to the main site. I simply want to submit the form info to the web service via Ajax, check

[jQuery] jQuery Form: document.forms.submit not working :(

2008-01-08 Thread Maik Kennison
Hello, I have the simple form like script type=text/javascript // wait for the DOM to be loaded $(document).ready(function() { $('#myform').ajaxForm(function() { alert(Thank you for your comment!); }); }); /script and form

[jQuery] JQuery Form Plugin with multiple forms per page

2007-11-29 Thread Tom Duke
Hi all, New to the list and jquery. I am trying to bind the JQuery form plugin to multiple forms on a single page. I can do this but I cannot figure out how to assign different options for each form. The form code is :- form action=activeResult.tmpl method=post id=active-[rid] ... /form

[jQuery] jQuery Form Plugin Doesn't execute on returned forms?

2007-11-25 Thread Geoff Millikan
I have a form that is submitted via the jQuery Form Plugin to a PHP page which then returns another form in its place. The second form looks identical to the first however this second form will not submit via the jQuery Form Plugin. It's as if the jQuery Form Plugin script at the top of the

[jQuery] jQuery Form Plugin document.myform.submit()

2007-11-24 Thread Geoff Millikan
I love the jQuery Form Plugin! I want to submit the form using an onClick event instead of making the User click a input type=submit button. Is that possible? I tried the below but no luck: function submitme(){$('#myform').submit(function() { $(this).ajaxSubmit(); return false; });}

[jQuery] jQuery Form Plugin with prepended hidden fields

2007-11-13 Thread micha149
Hi! I prepend some new hidden fields to my form. After that I make the form to an ajaxform with the jQuery Form plugin. It seems to work, but I miss the new hidden fields... Somebody knows the Problem?

[jQuery] Jquery Form w/File Upload - result code not recognizing $ JQuery script calls.

2007-11-08 Thread Ryan S
I've got a similar but different issue... Jquery.form works beautifully... From the result of the form call - my php script sends html back to the browser with $(document).ready(... scripts to setup the resultant code. When I DON'T upload a file, the result works perfectly -- any $(... jquery

[jQuery] jQuery Form Plugin fiasco

2007-10-01 Thread roso
The jQuery Form Plugin hosted at http://www.malsup.com/jquery/form/ is impossible to understand. I wasn't able to replicate any of the examples listed there. The demo page which also includes the documentation is bloated with a zillion number of examples and a zillion scripts. NO, that is NOT the

  1   2   >