Friday, January 28, 2011

Re: 2 Col Layout / Jquery / JSON

something like this

$array(
'nome' => 'huoxito',
'bebida' => 'vinho',
'musica' => 'reggae'
);
$jsonArray = json_encode($array);












$.ajax({
 
 ... on request result
 success: function(result){
 var json = $.parseJSON(result);
 
 $.each(json, function(i,item) {
  $('#divnome').html(item.nome);
  $('#divbebida').html(item.bebida);
  $('#divmusica').html(item.musica);
 });
 
});

--
Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org
Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions.
 
 
To unsubscribe from this group, send email to
cake-php+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/cake-php

No comments: