faq-kb.js 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*=========================================================================================
  2. File Name: app-todo.js
  3. Description: app-todo
  4. ----------------------------------------------------------------------------------------
  5. Item name: Vuexy - Vuejs, HTML & Laravel Admin Dashboard Template
  6. Author: PIXINVENT
  7. Author URL: http://www.themeforest.net/user/pixinvent
  8. ==========================================================================================*/
  9. $(function() {
  10. "use strict";
  11. // Filter
  12. $("#searchbar").on("keyup", function() {
  13. var value = $(this).val().toLowerCase();
  14. if(value!=""){
  15. $(".search-content-info .search-content").filter(function() {
  16. $(this).toggle($(this).text().toLowerCase().indexOf(value) > -1);
  17. });
  18. var search_row = $(".search-content-info .search-content:visible").length;
  19. //Check if search-content has row or not
  20. if ( search_row == 0 ){
  21. $('.search-content-info .no-result').removeClass('no-items');
  22. }
  23. else{
  24. if(!$('.search-content-info .no-result').hasClass('no-items') ){
  25. $('.search-content-info .no-result').addClass('no-items');
  26. }
  27. }
  28. }
  29. else {
  30. // If filter box is empty
  31. $(".search-content-info .search-content").show();
  32. if ($('.search-content-info .no-results').hasClass('no-items')) {
  33. $('.search-content-info .no-results').removeClass('no-items');
  34. }
  35. }
  36. });
  37. });