var link;
$('#tags a').click(function() {
- link = $(this).text();
+ link = $(this).attr('id');
createCookie("link", link);
});
+
// get value of clicked tag /////////////////////
function getCookie(cname) {
var name = cname + "=";
$("#categoriesGridView").hide();
$("#categoriesListView").hide()
$("#tagBox :checkbox:checked").each(function() {
- $("." + $(this).val()).show();
- console.log($(this).val());
+ $("." + $(this).attr("id")).show();
});
}
}
var link;
$('#tags a').click(function() {
- link = $(this).text();
+ link = $(this).attr('id');
createCookie("link", link);
});
+
// get value of clicked tag /////////////////////
function getCookie(cname) {
var name = cname + "=";
$("#categoriesGridView").hide();
$("#categoriesListView").hide()
$("#tagBox :checkbox:checked").each(function() {
- $("." + $(this).val()).show();
- console.log($(this).val());
+ $("." + $(this).attr("id")).show();
});
}
}