Last active
December 27, 2015 00:29
-
-
Save raideus/7238454 to your computer and use it in GitHub Desktop.
Corresponding JS for gs_selected_criteria(). Allows the user to de-select current terms.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('.selected-term').click(function() { | |
var rel = $(this).attr('rel'); | |
$('input[value="'+rel+'"]').attr('checked',false); | |
$(this).remove(); | |
$('#wp-advanced-search').submit(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment