hello its there any easiest way to make a 5 dependent drop down boxes which makes an advance search using ajax or jqeury thanks example is here : http://jailbreak-me.info/
Well it all depends on what your trying to do but I would just simply create the page in HTML/jQuery, create my 5 <select> tags and fill it with options and then write a $("#form").submit(); event handler to AJAX the details off using either $.get or $.post dependant on your preference. Then do all the logic to the AJAX'd page using a server-side language (PHP/Perl/Python) and die(); the result back. Also its called AJAX you can still send plain text back without any problems. Thanks Andrew