Posts by user50409 • 11 points
3 posts
-
1
votes1
answer59
viewsA: Return of JSON Data
Simple function for data return with Json JSON: <?php $dados = "Meus Dados"; echo json_encode($dados, JSON_PRETTY_PRINT); ?> Jquery: $.ajax({ url: "inc/json.php", dataType: 'json',…
-
0
votes1
answer59
viewsQ: Return of JSON Data
I am performing a simple data return in a Jquery function. However, the error message is displayed. Follows code JSON: <?php header('Content-Type: application/json'); $dados = "Meus Dados"; echo…
-
0
votes1
answer219
viewsQ: Range of Jquery loading
I would like to set a charging time between each load() to complete the loading of each. For that I would need to set a stop or something similar inside my Loop. That would be possible? for (var v =…