0
I need to make some changes to a web page.
I am creating an HTML form with Javascript and need help in the following case:
My form has a field where the user type the ID of a SPOJ-WWW Test, after typing the ID the page must make a get of some data from the Test that is in SPOJ to complete other fields of my form.
For example, the user enters the ID of some problem and the page automatically identifies what the problem is and completes the fields, title, description, objectives, etc.
Is there a function in Javascript that does this somehow, like getting the content?
If open to use Jquery,
ajax
can help– I_like_trains