Can you please let me know any nice site for jquery tutorials. It would be better if it has practical examples and also video tutorials
I also want to know if the following is possible using jquery. 1) I have certain search criteria in drop downlist box. 2) The first list box will be loaded when the page loads. 3) When a item is selected from the list the next drop down list should be filled in taking data from DB. But the page should be refreshed or loaded again. Is this possible??
You do this using AJAX and code on the server (usually in PHP) to get the data for the second box from your database. You can't access the database using jQuery (or Javascript) alone.