以下のように 2 つの div 要素があります。
  <div class="sc-info" tags="abc mno">
     ....
  </div>
  <div class="sc-info" tags="abc xyz">
     ....
  </div>
タグに存在する値に基づいて hide() と show() を実行したい.以下のようなもの
  $('div.sc-info[tags with "abc"]').hide()   // This should hide both divs
  $('div.sc-info[tags with "xyz"]').show()   //This should show only second one