[jQuery] Re: ajaxForm and validate plugin

2009-08-03 Thread András Csányi
       beforeSubmit: checkForm >    } ); > > this is it :) > my sources: http://www.malsup.com/jquery/form/#code-samples and > http://www.chrillo.info/2008/10/14/jquery-ajaxform-and-validate-with-ajaxsubmit/ > cheers > > > On Jul 5, 11:20 am, András Csányi wrote: >> H

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

2009-08-03 Thread András Csányi
2009/8/2 S2 : > > 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, I'm using less time

[jQuery] Re: get value of textfield

2009-07-29 Thread András Csányi
2009/7/29 shaf : > > Hi Guys > > How do I get the value of a form textfield ? > > >   Your Name > Hi! Try it like this: $("#name").val(); András -- - - -- Csanyi Andras -- http://sayusi.hu -- Sayusi Ando -- "Bízzál Istenben és tartsd szárazon a puskaport!".-- Cromwell

[jQuery] Re: function running 2X

2009-07-29 Thread András Csányi
2009/7/29 marksimon : > > 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 means tha

[jQuery] Re: order of ajax calls

2009-07-21 Thread András Csányi
2009/7/21 MorningZ : > > 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 that it stil

[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)}); $.getJSON(\"\/moviesbuttons\",function(moviesButton

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

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

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

2009-07-12 Thread András Csányi
2009/7/12 Erik : > > 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 szárazon a p

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

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

[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 erro

[jQuery] Re: form submit during getJSON

2009-04-30 Thread András Csányi
2009/4/30 donb : > > 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!".-- Cromwell

[jQuery] Re: form submit during getJSON

2009-04-30 Thread András Csányi
2009/4/30 Ben : > > I am having trouble submitting a form by clicking on a button " 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 this? http://malsup.

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

2009-04-21 Thread András Csányi
2009/4/21 default_user : > > 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? > > > > testHTML = "TESTING li>"; > > testGetHTML = $(".targetMe", testHTML).html(); > > aler

[jQuery] Re: I need some hints

2009-04-18 Thread András Csányi
2009/4/17 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

[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 () and jQuery (

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

2009-04-15 Thread András Csányi
2009/4/15 Snef : > > 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 Istenben és tar

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

2009-04-15 Thread András Csányi
2009/4/15 Snef : > > 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 -- "Bízzál Iste

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

2009-04-15 Thread András Csányi
2009/4/15 Snef : > > 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 on the s

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

2009-04-02 Thread András Csányi
2009/4/2 James : 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 fine. I can see the re

[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: 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

[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] 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

[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: Teszt form a: b: c: $('

[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). I'