return false;
});
+ $('.hide-all-tags').click(function() {
+ $(this).parent().parent().fadeOut(function() {
+ $(this).prev().fadeIn();
+ });
+ return false;
+ });
+
$('#registration-form').ajaxForm({
dataType: 'json',
beforeSubmit: function() {
});
}
});
+
+ $('a.remove-from-shelf').click(function(event) {
+ event.preventDefault();
+ link = $(this);
+ $.post(link.attr('href'), function(data, textStatus) {
+ link.parent().remove();
+ });
+ });
});
})(jQuery)
\ No newline at end of file