passing search parameter through jquery
问题 i have a form in which if the user enters the search query, its parameter should be passed through jquery and after getting the results it should load the results in the div container. since i'm not very well-versed with jquery, how would i do this? html: //currently the data is being displayed on pageload: $(document).ready(function() { $("#bquote").load("quotes_in.php") }); $(".bsearch") .keydown(function() { //pass the parameter to the php page //display in div #bquote }); <!-- Begin