Hi i want following thing on my java script enabled form. Whenever i select a Song on my song field album name should be auto filled from database.

Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
For this you will need two things
1) On server side, create a “GET” method which will take “Song Name” (go for Song ID) as input and will return you the “Album Name”.
2) Using jQuery make an ajax call to this GET function
As you don’t have any “Submit” button, wire up key down event on your song name text box and on every key down, make a GET request, and on Success show album title in the respective text box.
AAP Coding