Skip to content

Instantly share code, notes, and snippets.

@srinathweb
Created May 15, 2015 04:03
Show Gist options
  • Select an option

  • Save srinathweb/63d8a752c6fb872a25f4 to your computer and use it in GitHub Desktop.

Select an option

Save srinathweb/63d8a752c6fb872a25f4 to your computer and use it in GitHub Desktop.
distroy popover
<script>
$("#test-popover").on("click", function(){
var anonymous_nickname = $("#id_nickname").val();
if (anonymous_nickname.length <= 2) {
$('#id_nickname').popover('show');
} else {
$('#id_nickname').popover('destroy');
}
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment