Skip to content

Instantly share code, notes, and snippets.

@Ungsik-Yun
Last active August 29, 2015 14:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ungsik-Yun/1d08708520a2730aef6c to your computer and use it in GitHub Desktop.
Save Ungsik-Yun/1d08708520a2730aef6c to your computer and use it in GitHub Desktop.
amiami sold-out product remove
$('.product_box').each(function (){
if( $(this).find('.product_day').text() == "Sold out")
{
$(this).remove();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment