Skip to content

Instantly share code, notes, and snippets.

@reediredale
Created May 1, 2015 05:29
Show Gist options
  • Save reediredale/86fa059bbece9bb76e9c to your computer and use it in GitHub Desktop.
Save reediredale/86fa059bbece9bb76e9c to your computer and use it in GitHub Desktop.
Wrap certain words in Javascript
<script>
$('option').each(function(){ // Choose what kind of tag this is already in
var sort = $(this).text().replace(/Sort by/g,"<div class="bold">Sort by</div>");
$(this).html(sort);
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment