File indexing completed on 2024-05-12 05:58:26

0001 $(document).ready(function(){
0002     $("#gfx3_execute").click(function(){
0003       $.post('execute.php', 
0004                 { code: $("#gfx3_code").val()},
0005                 function(data) {
0006                   $('#gfx3_generatedcode').html(data);
0007                 });
0008     });
0009   });