[jQuery] Re: jQuery, ajax, json, php

2009-06-11 Thread Chris Chen
$json = $_POST['json']; $user = json_decode($json); echo $user['name']; 2009/6/11 Val Cartei > > with data.name (data is the json object you pass to your success > function). Like: > > success: function(data) { >alert(data.name); >} > > Val > > On Thu, Jun 11, 2009 at 12:

[jQuery] Re: event

2009-06-06 Thread Chris Chen
current domElement 2009/6/6 runrunforest > >if(o.btnGo) >$.each(o.btnGo, function(i, val) { >$(val).click(function() { >return go(o.circular ? o.visible+i : i); >}); >}); > > > Hi, > > I wonder whats the second p

[jQuery] Re: Already Exist jquery plugin

2009-06-02 Thread Chris Chen
why 2009/6/3 jsuggs > > You are going to have to be more specific than that. Where are the > values for user or email stored? In a database? If so, then you'd > probably need to make an ajax call with the values that you would want > to check. You might want to take a look at one of my other

[jQuery] Re: jQuery ajax 404 error

2009-06-02 Thread Chris Chen
are you sure the url is available?? 2009/6/2 Jonathan Vanherpe (T & T NV) > > raymond wrote: > >> Hi, all. >> I have extremely annoying issue for my project, which made me keeping >> 3 days on it. >> I used jQuery.ajax, but it gets all time 404 error, although target >> url is still available. >