- This topic has 3 replies, 2 voices, and was last updated 6 years, 11 months ago by .
Viewing 4 posts - 1 through 4 (of 4 total)
Viewing 4 posts - 1 through 4 (of 4 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 › Accessing returned data
Tagged: V3
You can use a JavaScript like this:
<script>(function ( $ ) {
"use strict";
$(document).on("sf:ajaxfinish", ".searchandfilter", function(){
// load any js you need to run here
});
}(jQuery));</script>
In the current version, editing, or adding to, the HTML markup of the form is not possible other than by using custom JavaScript. In V3 this will become possible.
Sorry, what I mean is that I need to access the chunk of data or the jquery object that gets inserted into the ajax loading area.
Basically are there any extra parameters that I can add to the sf:ajaxfinish event that will let me access the returned chunk of markup?