Skip to content

Instantly share code, notes, and snippets.

@ABooooo
Created August 19, 2014 07:46
Show Gist options
  • Save ABooooo/7a027cfe8d30f6b04132 to your computer and use it in GitHub Desktop.
Save ABooooo/7a027cfe8d30f6b04132 to your computer and use it in GitHub Desktop.
Search for a word then do something
var item = $('.stanje');
for (var i = 0; i <= item.length; i++) {
if ($(item[i]).text() == 'prodano') {
$(item[i]).addClass('bg-danger');
} else if ($(item[i]).text() == 'rezervirano') {
$(item[i]).addClass('bg-warning');
} else if ($(item[i]).text() == 'prosto') {
$(item[i]).addClass('bg-success');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment