hello. i have developed a php based search page, that search from database and it has php based pagination, and from my index page, i am calling that search page using jquery into the resutlist div tag.
it all works fine till now, but when i click on next of the pagination link, it took me to the search result page, what i want , is a way that the next href of search page (php pagination) to be called and show its result on the same div tag, without refreshing that page,,
On my index page, i have this code to search and fetch result to resultlist div tag. $(document).ready(function(){ $('#search').click(function() { $('#resultlist').html('Loading, Please wait....'); var searchVal = $('#q').val(); $.ajax({ type: 'GET', url: 'do_search.php', data: 'keyword=' + searchVal, dataType: 'html',