[jQuery] Re: Ajax values are lost between 2 operations

2009-12-27 Thread Tristan
t; is being written into DOM by your getScript > value="data-file=../graphiques/notes.php&loading=Gamer Certified, chargement > des donn?es..."/> > Tristan wrote:if it can help, here's the link > :http://www.gamer-certified.fr/statistiques/par-hebergeur.php1) yeap they

[jQuery] Re: Ajax values are lost between 2 operations

2009-12-27 Thread Tristan
if it can help, here's the link : http://www.gamer-certified.fr/statistiques/par-hebergeur.php 1) yeap they are correct 2) i tryed that but it still not works 3) php is doing his part, datas are correctly updated with the help of the POST value $("#nomGSP").change(function () { //get

[jQuery] Re: Ajax values are lost between 2 operations

2009-12-27 Thread Tristan
ry putting the getScript as a > callback to $Post > 3) is the php doing what it is supposed to? withing the callback you could > look a the values it generates also to see what is happening > Tristan wrote:Hi, i've got a little problem and i need your help please : my > script does

[jQuery] Re: Can't get the $.POST working

2009-12-27 Thread Tristan
ok, that's good i've found but got another problem with updating. so i opened another discussion.

[jQuery] Ajax values are lost between 2 operations

2009-12-27 Thread Tristan
Hi, i've got a little problem and i need your help please : my script does : 1- post a value in "notes.php" to update values according to what is send. 2- reload the script which calls an flash chart to update it the problem is : the datas are correctly updated in /notes.php when calling again t

[jQuery] Re: Can't get the $.POST working

2009-12-27 Thread Tristan
you're right, there is no code to do so, i though the chart would be reloaded by itself :/ any idea how you do this please?

[jQuery] Re: Can't get the $.POST working

2009-12-26 Thread Tristan
ok, i turned on my brain and i found the error : $("nomGSP").click(function () { incorrect $("#nomGSP").click(function () {correct but it would not be fun if it works ! i've got the correct data produced by the changing (i can see it in the ajax request), but the FLASH chart is not reload

[jQuery] Can't get the $.POST working

2009-12-26 Thread Tristan
Hello (merry Christmas), i know a little bit of jquery basics but the $.post function kind of makes me angry :D. Here's some explanations on my page there is 2 things : - one form with one SELECT (to let choose users which datas are shown on the graph, it simply modify an SQL request in the "not

[jQuery] Re: how to apply a class to a using $('#id').html()

2009-11-22 Thread Tristan
Thanks guys, worked perfectly !

[jQuery] how to apply a class to a using $('#id').html()

2009-11-22 Thread Tristan
Hello, i have in my script something like that $('#status').html('' + email + ' is OK'); instead of that i want to apply on my div status the class called 'avail' I know this is simple, but i'm stuck here. Thanks for helping me.

[jQuery] Re: stop jQuery Form Plugin from being submitted multiple times.

2009-07-08 Thread tristan
On Jul 8, 5:10 pm, tristan wrote: > I'm sure this is very simple, I'm quite very new to JavaScript. I have > a function for submitting a form, I'd like it to stop the user from > submitting the form multiple times by click on my submit link multiple times. > I >

[jQuery] stop jQuery Form Plugin from being submitted multiple times.

2009-07-08 Thread tristan
I'm sure this is very simple, I'm quite very new to JavaScript. I have a function for submitting a form, I'd like it to stop the user from submitting the form multiple times once they have clicked it. I haven't found a way to do this in the docs. Can anyone point me in the right way? My function

[jQuery] [validate] Validation plugin 1.5.5 error in IE6

2009-06-29 Thread Tristan
p and the problem no longer persists. Here is the command I ran on cygwin: perl jsPacker.pl -i lib/jquery.validate.js -o lib/ jquery.validate.pack.js -e10 -s These are the safest settings I've found with jsPacker.pl. The packed file lost 2kb (.1kb gzipped) of savings, but it works now! Cheers, Tristan

[jQuery] stuck trying to reload tab programatically.

2009-05-23 Thread tristan
Hi everyone, I'm very new to Javascript but very impressed by JQuery, but now rather stuck, I've read and read but found no solution. If anyone can point me in the right direction I would be much obliged. I have a set of tabs loading content via ajax: My main tab page Jquery: $(document).re

[jQuery] Re: Malsup's Cycle plugin exhibiting strange behavior

2009-03-12 Thread Tristan
hi there, i got the same problem actually appearing on: * windows vista home premium * firefox 3.0.7 * cycle core version: 2.56 03-MAR-2009 * jQuery 1.3.2 (Minified) it works fine on: * internet explorer 7. first image displays nice, all other images are sized down to exactly 7x15px. note: tran

[jQuery] Re: Validation: Which and why...

2009-01-07 Thread Tristan Burch
It seems like a good idea to to both. That way if the user does have JavaScript disabled, there is still validation on the server side. On Wed, Jan 7, 2009 at 1:47 PM, Will Anderson wrote: > > I choose to validate from PHP because of a couple things. > > 1. It's more secure because nobody can se

[jQuery] anatomy of a web browser request

2009-01-07 Thread Tristan
page done, etc.). Thanks, Tristan

[jQuery] Re: Tabs: get selected tab?

2008-11-14 Thread Tristan
Use "ui.index" to access the currently active tab's index, zero being the first tab and so on. $('ul.tabs').tabs({ show: function(event, ui) { if (ui.index == 0) { // do stuff } else if (ui.index == 1) { // do other stuff } } }); On Nov 14,

[jQuery] Re: jQuery API extension for Dreamweaver

2008-01-29 Thread Tristan
Does anyone know if a similar thing exists for the eclipse IDE? On Jan 29, 11:45 am, Chris Charlton <[EMAIL PROTECTED]> wrote: > Updated extension (v.0.2.9) posted athttp://xtnd.us

[jQuery] Validation Plugin - using required inside of addMethod

2008-01-14 Thread Tristan
Hi, I'm trying to create a new custom validation method similar to the other methods included in 'additional-methods.js'. I've created my method like this: jQuery.validator.addMethod('dateAfter', function(value, element, param) { var dVal = new Date(); var dParam = new Date();