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 22: | Line 22: | ||
$("#showQueries").click(function(){ | $("#showQueries").click(function(){ | ||
var testVar = []; | var testVar = []; | ||
testVar = $(".query").map(function(){ | |||
return getStrings($(this).children()); | return getStrings($(this).children()); | ||
}) | |||
}); | }); | ||
function getStrings(obj){ | function getStrings(obj){ | ||
Line 33: | Line 32: | ||
return string; | return string; | ||
}); | }); | ||
return outArr; | |||
} | } | ||
</script> | </script> |