I will update the title of this question after I fully understand what I am asking
I am using the vimeo api to display an array of videos using JSON and uses the tags as classes. This is working fine.
However at the end of the script I want to hide any elements that don't match the query in the url.
var query = location.href.split('/#/').pop().split('/').join(" ");
I grab the query from the url (http://website.com/link/to/page/#/tag/tag/tag/tag = "tag tag tag tag") then check it against the classes of each result item.
// Find Parent & checks for query classes
var thisTile = tile.parent().parent(),
matchesClass = thisTile.hasClass(query);
// If does hot have query as class then hides
if (matchesClass === false) {
$(this).hide();
}
NOTE: Everything works except the part where it is supposed to hide the result item if it doesn't have the query classes.
JSFiddle: http://jsfiddle.net/JamesKyle/Rt4pt/
Test Query: http://jsfiddle.net/JamesKyle/Rt4pt/show/#/basketball
$(this)refer to? – Ohgodwhy Aug 14 '12 at 13:47