Skip to content

Instantly share code, notes, and snippets.

@LBRapid
Created July 26, 2010 17:59
Show Gist options
  • Save LBRapid/490933 to your computer and use it in GitHub Desktop.
Save LBRapid/490933 to your computer and use it in GitHub Desktop.
$('.suggested-tags li a').click(function(e) {
if($('.tag-box').attr('data-empty') == 0) {
var tag_text = ', ' + $(this).text();
}else {
var tag_text = $(this).text();
$('.tag-box').attr('data-empty', '0');
}
e.preventDefault();
$('.tag-box input:text').val($('.tag-box input').val() + tag_text);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment