Not at this time.
Is there a replacement for ajaxsearch in revo? All I see is googlesearch in the demo site. I don’t see it mentioned anywhere...

Hi neon_eddy,
I follow your instruction to build the ajax-search on my site. It’s amazing that it works. However, there is a challenge on paging the results, it turns me to the blank page with results and that’s not really good, I think we have to fix that again, I just cant wait for the public release of AjaxSearch.
<script type="text/javascript">
$(document).ready(function() {
$(".sisea-search-form").submit(function () {
$("#site-search-results").load("[[~25]]",$(".sisea-search-form").serialize()).show();
return false;
});
$(".sisea-search-form input").keyup(function() {
if(this.value.length > 2) {
$("#site-search-results").load("[[~25]]",$(".sisea-search-form").serialize()).show();
}
else {
$("#site-search-results").hide();
}
});
});
</script>
<form class="sisea-search-form" action="search.html" method="get" id="search">
<input type="text" name="search" value="Enter your keywords..." maxlength="30" class="inputbox" size="30" title="Enter your keywords to process" >
<input type="hidden" name="id" value="41"> </form>
This works for paging results.
[[!SimpleSearch?&perpage=`5`&extractLength=`150`]]
<script type="text/javascript">
if(typeof jQuery !== undefined) {
$(document).ready(function() {
$(".sisea-page a").click(function(event) {
event.preventDefault();
$("#search-results").load($(this).attr(’href’),$(".sisea-search-form").serialize()).show();
return false;
});
});
}
else {
alert("no jQuery!");
}
</script>