×

Welcome to TagMyCode

Please login or create account to add a snippet.
0
0
 
0
Language: Javascript
Posted by: Matthew Speicher
Added: Jun 24, 2016 2:22 PM
Views: 2002
Tags: no tags
  1.                 $("#butSelectall").button();
  2.                 $("#butSelectall").click(function() {
  3.                     $('#selectProd li[data-selected="no"][data-visible="yes"]').each(function() {
  4.                         console.log($(this).text());
  5.                         seleziona(this);
  6.                     });
  7.  
  8.                 });