- This topic has 1 reply, 2 voices, and was last updated 10 years, 8 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
These forums are now closed and remain for historical purposes.
None of the content applies to the new version 3. For support, get in touch via our contact form.
Forums › Forums › Search & Filter Pro › Ajax results invisible
Hi!
When I loading results with Ajax all my content is invisible.. but in source code I can see filtred posts.
I found this:
<script type="text/javascript">
<![CDATA[
$(".searchandfilter").on("sf:ajaxstart",function(){
console.log("ajax start");
$('#loader').show();
});
$(".searchandfilter").on("sf:ajaxfinish",function(){
console.log("ajax complete");
$('#loader').hide();
jQuery.getScript("PATH_TO_YOUR_THEME_DIRECTORY/salient/js/init.js", function(data, textStatus, jqxhr) {
//console.log(data); //data returned
//console.log(textStatus); //success
//console.log(jqxhr.status); //200
//console.log('script.js loaded.');
});
});
]]>
</script>
but it was not working for me.
Please help