[jQuery] validate with form plugin

2008-05-11 Thread András Csányi
Hi all! I'm new in jquery and i have a queston. Somebody knows usable example like this to using form plugin with validate plugin(http://jquery.bassistance.de/validate/demo/ajaxSubmit-intergration-demo.html)? I tried 4 hours writing a working code, but i have failed (and i'm tired and nervos).

[jQuery] Re: validate with form plugin

2008-05-12 Thread András Csányi
2008/5/11 Jörn Zaefferer [EMAIL PROTECTED]: What exactly are you trying to achieve? Currently the only thing I can provide is a pointer at the example you already found... Jörn So, i put here my code, and i hope you can tell me what i did wrong. form: form id=probaform method=post

[jQuery] Re: validate with form plugin

2008-05-12 Thread András Csányi
2008/5/12 Jörn Zaefferer [EMAIL PROTECTED]: This line is broken: minLegth:3,. The method is minlength and you've got a trailing comma which screws up any non-firefox browser. Same in your last line of ajaxSubmit dataType: 'null',. Jörn Oh my God! I'm a luser... :( What is the good

[jQuery] Re: getJSON - how do you make it work?

2008-08-18 Thread András Csányi
2008/8/18 Jon Sidnell [EMAIL PROTECTED]: Hi I'm trying to get some JSON content using the $.getJSON function, but it just won't work!! I started out using ASP.NET to generate a load of JSON, but decided to create a simple text file with a JSON string in it instead. I did generate jQuery

[jQuery] Re: unknow wrror

2008-08-20 Thread András Csányi
2008/8/20 Csányi András [EMAIL PROTECTED]: Hi all! I try to make an application with ajax. I need a input field with typewatch plugin. If the user stop the type the TypeWatch call an php function through $.getJSON(). The ajax call workig fine. The result come back. I can see in Firebug

[jQuery] more than 1 $.getJSON in click event

2009-04-02 Thread András Csányi
Hi all! I want to do the next: I have one string on the website. The user click to the string and the click action is run more than 1 $.getJSON call. Sometimes is needed every call output write on the website. But if I put more than 1 $.getJSON call in one click events function (see the example)

[jQuery] Re: more than 1 $.getJSON in click event

2009-04-02 Thread András Csányi
2009/4/2 James james.gp@gmail.com: Hi James! The code looks fine. Have you tried using the Firebug plug-in for Firefox to debug the AJAX calls? It can help you see whether the call was made, the request data sent, the response data, errors, etc. I'm using Firebug. The call is working

[jQuery] Re: Handling html with javascript in .html()

2009-04-15 Thread András Csányi
2009/4/15 Snef sne...@gmail.com: When using $.ajax() i encounter some problems. With the ajax I'm calling a script that will return some html. When echoing the returned data, I can see that everything is returned including the javascript tags. When 'inserting' the returned data into a div

[jQuery] Re: Handling html with javascript in .html()

2009-04-15 Thread András Csányi
2009/4/15 Snef sne...@gmail.com: I already tried it with the $(document).ready(function(){.}). No success. :( And through $.getJSON()? At night I can send you an string what is go through json into $(#foo).html(); András -- - - -- Csanyi Andras -- http://sayusi.hu -- Sayusi Ando --

[jQuery] Re: Handling html with javascript in .html()

2009-04-15 Thread András Csányi
2009/4/15 Snef sne...@gmail.com: Well a tip to all. When having problems, first give your pc a nice reboot ;) Are you serious? :) Which OS do you have? Suddenly it is working :S Don;t know why, but it is. O_o -- - - -- Csanyi Andras -- http://sayusi.hu -- Sayusi Ando -- Bízzál

[jQuery] I need some hints

2009-04-17 Thread András Csányi
Hi all! I'm developing an php and jQuery based grid (something like this: http://www.phpgrid.com/grid/) for my Thesises and I want to coloring the table row if the mouse over the row. You know, this is the minimal visual feature what is following the users eyes... I tried with css (tr

[jQuery] Re: I need some hints

2009-04-18 Thread András Csányi
2009/4/17 András Csányi sayusi.a...@gmail.com: Hi all! I'm developing an php and jQuery based grid (something like this: http://www.phpgrid.com/grid/) for my Thesises and I want to coloring the table row if the mouse over the row. You know, this is the minimal visual feature what

[jQuery] Re: How to get JQuery to parse text as HTML

2009-04-21 Thread András Csányi
2009/4/21 default_user ayapej...@gmail.com: I'm trying to get jquery to parse some text in a variable as HTML, has anyone tried this before and got it to work?  Can this even be done, or do I have to parse as text? CODE testHTML = htmlhead/headbodyulli class='targetMe'TESTING/

[jQuery] Re: form submit during getJSON

2009-04-30 Thread András Csányi
2009/4/30 Ben bhoipkem...@gmail.com: I am having trouble submitting a form by clicking on a button input type='submit' / while I am waiting for the callback of the $.getJSON function to fire. Is there a way to allow the form to submit even if the callback is never called? Have you tried

[jQuery] Re: form submit during getJSON

2009-04-30 Thread András Csányi
2009/4/30 donb falconwatc...@comcast.net: Whoa!  That link sents me to a 'spyware-files.info' website!!! Which link? What I'm suggested or my blogs link? Both working for me. -- - - -- Csanyi Andras -- http://sayusi.hu -- Sayusi Ando -- Bízzál Istenben és tartsd szárazon a puskaport!.--

[jQuery] ajaxForm and validate plugin

2009-07-05 Thread András Csányi
Hi all! I have a form and I want to validate before submit with [1] plugin because nice and good. I want to send the form's data with ajaxForm [2] plugin. The problem is the next: I set the ajaxForm options that before send the data validate. The validate plugin is working fine because I got

[jQuery] Re: Form with Ajax Load Content combined with onClick

2009-07-12 Thread András Csányi
2009/7/12 Erik eriks...@mac.com: Is it possible to combine the following? form action=https://www.expressdb.com/edp/? AppKey=3905B91021BD0A1490189D249874B317AAD9067B method=post enctype=multipart/form-data I suggest you, try it! :) -- - - -- Csanyi Andras -- http://sayusi.hu -- Sayusi

[jQuery] Re: Form with Ajax Load Content combined with onClick

2009-07-12 Thread András Csányi
2009/7/12 Erik eriks...@mac.com: I already did and no luck :-( Any suggestions? there is another two way: - change the method to get - use hidden fields to send special data These are good for you? -- - - -- Csanyi Andras -- http://sayusi.hu -- Sayusi Ando -- Bízzál Istenben és tartsd

[jQuery] Re: Form with Ajax Load Content combined with onClick

2009-07-12 Thread András Csányi
2009/7/12 Erik eriks...@mac.com: A little more detail and example would be great. First: But, I'm not sure this is working fine. form action=https://www.expressdb.com/edp/? AppKey=3905B91021BD0A1490189D249874B317AAD9067B method=GET enctype=multipart/form-data Secondly: form

[jQuery] order of ajax calls

2009-07-21 Thread András Csányi
Hi All! I have this script: $(document).ready( function(){ $('#movies_menu').click( function(variable_main){ $.getJSON(\\/movies\,function(moviesLibraryvar_800925333){$('#grid').html(moviesLibraryvar_800925333)});

[jQuery] Re: order of ajax calls

2009-07-21 Thread András Csányi
2009/7/21 MorningZ morni...@gmail.com: Yeah, your first mistake is assuming that the first will be done when the second is called you've got two choices, one with a plugin, one without 1) with plugin...  google jQuery Ajax Queue.. it's an older plugin, but people have said in here

[jQuery] Re: function running 2X

2009-07-29 Thread András Csányi
2009/7/29 marksimon zen...@gmail.com: Any idea why this would run twice: function clickcharges() {        $('#cardcharges tr td').click(function() {        alert('execute once');         }); } Stupid idea, but maybe... Because the td tag is part of the tr. And if you click the cell once

[jQuery] Re: get value of textfield

2009-07-29 Thread András Csányi
2009/7/29 shaf shaolinfin...@gmail.com: Hi Guys How do I get the value of a form textfield ? form   input type=text name=name id=name / Your Name /form Hi! Try it like this: $(#name).val(); András -- - - -- Csanyi Andras -- http://sayusi.hu -- Sayusi Ando -- Bízzál Istenben és

[jQuery] Re: Looking for a Good JavaScript Editor that Supports JQuery

2009-08-03 Thread András Csányi
2009/8/2 S2 smnthsm...@gmail.com: Does anyone know of a good JavaScript editor that supports JQuery? Anyone sucessfully integrate JQuery into Eclipse/WTP or JSEclipse? Hi, I'm using Netbeans and I like it very much. But telling the truth my golal is generate jquery source code by php. So,

[jQuery] Re: ajaxForm and validate plugin

2009-08-04 Thread András Csányi
/ cheers On Jul 5, 11:20 am, András Csányi sayusi.a...@gmail.com wrote: Hi all! I have a form and I want to validate before submit with [1] plugin because nice and good. I want to send the form's data with ajaxForm [2] plugin. The problem is the next: I set the ajaxForm options that before