Skip to content

Instantly share code, notes, and snippets.

@sj82516
Created January 30, 2016 12:48
Show Gist options
  • Select an option

  • Save sj82516/a8abc37ebf742de72c4c to your computer and use it in GitHub Desktop.

Select an option

Save sj82516/a8abc37ebf742de72c4c to your computer and use it in GitHub Desktop.
//Right One
item.attr("data-title", error);
item.attr("data-placement","bottom");
item.attr("data-toggle","toggle");
item.closest("div").addClass("has-error");
item.closest("div").addClass("has-feedback");
item.closest("div").find(".glyphicon-ok").remove();
item.after('<span class="glyphicon glyphicon-remove form-control-feedback"></span>');
item.tooltip('show');
//Wrong One
item.attr("data-title", error);
item.attr("data-placement","bottom");
item.attr("data-toggle","toggle");
item.tooltip('show');
item.closest("div").addClass("has-error");
item.closest("div").addClass("has-feedback");
item.closest("div").find(".glyphicon-ok").remove();
item.after('<span class="glyphicon glyphicon-remove form-control-feedback"></span>');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment