Widget:KeywordSearch: Difference between revisions

Jump to navigation Jump to search
Matt Pijoan (talk | contribs)
No edit summary
Matt Pijoan (talk | contribs)
No edit summary
Line 23: Line 23:
   var testArr = new Array();
   var testArr = new Array();
   var testVar = $.each($(".query"), function(index, value){
   var testVar = $.each($(".query"), function(index, value){
        testArr[index] = "";
         testArr[index] += $.each($(this).children, function(ind, val){
         testArr[index] += $.each($(this).children, function(ind, val){
              console.log(ind);
              return ind;
         });
         });
         return testArr;
         return testArr;
   });
   });
  console.log(testArr[0]);
});
});
});
});

Revision as of 20:55, 17 October 2013