At the moment I am working with a php-script that reads data from a xml-file. The user first has to select on which xml entry he wants to get more information by using a dropdown-menu, then he sends the form to the same php-page by clicking the submit button. Because the page reloads, it is able to see that something has been send by POST and can then show the requested information to this xml entry on the bottom of the page.
But I would like to make it a bit more user-friendly. The idea is that when someone chooses an entry from the dropdown, the requested information is shown without having to click the submit button and of course without reloading the whole page. That means that the POST form is being send in the background and the information appears directly after choosing an item from the dropdown.
I know that this is possible using jQuery and AJAX, but I'm not really experienced in one of these languages. Anyone got an idea how to solve this? :)
Thanks