Skip to content

Instantly share code, notes, and snippets.

@RuslanAsadov
Created December 22, 2018 14:55
Show Gist options
  • Save RuslanAsadov/4df3a6d284cc4ef23358bdb7bcce14d8 to your computer and use it in GitHub Desktop.
Save RuslanAsadov/4df3a6d284cc4ef23358bdb7bcce14d8 to your computer and use it in GitHub Desktop.
replace-content.js
$('.item').each(function() { //замена во всех item
var ths = $(this);
ths.html(ths.html().replace('O', '<span>O</span>')); //заменяем в item букву О на О в span
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment