if I load a file contents into a div using:
$("testDiv").load('http://outserver/Siteb/search');
I get the search page in the div. The page in question has a search form. I want the resulting page to be bound within the same div, rather than take over as normal.
Is there any way to do this?
Use IFRAME to do this:
Or Create whole View logic by jQuery
1) $(“#testDiv”).load(‘http://outserver/Siteb/search’);
2) $(“form”).submit() //handle form submit and submit it via AJAX call
3) get results through AJAX
4) display results in div, without need to refresh page