[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 val.car...@gmail.com 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,

[jQuery] Re: event

2009-06-06 Thread Chris Chen
current domElement 2009/6/6 runrunforest craigco...@gmail.com 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

[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) jonat...@tnt.be 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.

[jQuery] Re: Already Exist jquery plugin

2009-06-02 Thread Chris Chen
why 2009/6/3 jsuggs jsu...@gmail.com 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