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.

On Apr 2, 5:27 am, András Csányi <sayusi.a...@gmail.com> wrote:
> 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) I can write the first $.getJSON call output to the website,
> but the second $.getJSON output I can't write.
>
> I think the code is good because I changed the parameters and always
> the first output is okay.
> So I'm courious what a hell is the problem. I'm not an big javascript
> and jquery magician... :)
>
> Thanks for the help and sorry because of my english ;)
>
> So, here is the source code:
>
> $(document).ready(
>   function() {
>     $("#test").click(
>       function() {
>         $.getJSON("index/test",
>           function(var_982505985){
>             $("#target2").html(var_982505985);});
>         $.getJSON("index/test2",
>           function(var_1366133349){
>             $("#target3").html(var_1366133349);});
>       }
>     )
>   }
> );
>
> --
> - -
> --  Csanyi Andras  --http://sayusi.hu-- Sayusi Ando
> --  "Bízzál Istenben és tartsd szárazon a puskaport!".-- Cromwell

Reply via email to