Skip to content

Instantly share code, notes, and snippets.

@mgibbs189
Created January 4, 2016 14:00
Show Gist options
  • Save mgibbs189/d56d693b4801a0facf60 to your computer and use it in GitHub Desktop.
Save mgibbs189/d56d693b4801a0facf60 to your computer and use it in GitHub Desktop.
<script>
(function($) {
$(document).on('facetwp-loaded', function() {
// Change the "SKU" placeholder text (autocomplete facet)
$('.facetwp-facet-sku .facetwp-autocomplete-update').attr('placeholder', 'My placeholder');
// Change the "dira" placeholder text (search facet)
$('.facetwp-facet-dira .facetwp-search').attr('placeholder', 'Another placeholder');
});
})(jQuery);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment