I\'m having problems sending a JSON jQuery array via Ajax to a PHP script. What is the problem here:
var tee = $(\'#voting_image img\').attr(\'id\'); var vote =
Thanks for your responces, I went with:
$.getJSON( '/vote_save.php?vote='+encoded, function(data) { $('#voting_hint_name').html(data.bob); $('#voting_buttons').html('PRINT ITDON\'T PRINT IT'); } );
instead of $.ajax and it worked.