8 lines
238 B
JavaScript
8 lines
238 B
JavaScript
const inputElement = document.getElementById('mytext');
|
|
const sendButton = document.getElementById('mybutton');
|
|
|
|
sendButton.addEventListener('click', () => {
|
|
const inputValue = inputElement.value;
|
|
ajax_post(inputValue, 'get_data');
|
|
});
|