Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.70K
1 Posted Topic
hello, today i have showen that to my students and my solution: // JQuery $('.press').on("click", function(event) { event.preventDefault() let fd = new FormData() let phoneID = $(this).attr('phoneid') fd.append('phoneID', phoneID) $.ajax({ url: "./phones.php", type: "POST", data: fd, processData: false, contentType: false, complete: (response) => { $('#phone' + phoneID).val(response.responseText) } }) }) …
The End.
Moshe_2