Created
January 4, 2016 14:00
-
-
Save mgibbs189/d56d693b4801a0facf60 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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