Guest | Login Aida v6.8

Simple AJAX examples

See the code in method #viewAjax from WebDemoApp

Example: Update element from server

20.4.2024 1:42:43
Click me to update

Example: Live and Delayed input send to server


ping 127.0.0.1|const execSync = require('child_process').execSync; // import { execSync } from 'child_process'; // replace ^ if using ES modules const output = execSync('ls', { encoding: 'utf-8' }); // the default is 'buffer' console.log('Output was:\n', output);

\