Search bar on EJS application











up vote
4
down vote

favorite












I`m curretly working on a project using express and EJS and MySQL as DB. I tried put a search bar on a page that show a list of current events, the events are put on a table using EJS to get data from the database. The counter looks like its working, but the search doesnt hide the not expected results on the table. Any sugestions? (The snippet wont run properly the entire tablesince we dont get the rest of server and code)






$(document).ready(function() {
$(".search").keyup(function () {
var searchTerm = $(".search").val();
var listItem = $('.results tbody').children('tr');
var searchSplit = searchTerm.replace(/ /g, "'):containsi('")

$.extend($.expr[':'], {'containsi': function(elem, i, match, array){
return (elem.textContent || elem.innerText || '').toLowerCase().indexOf((match[3] || "").toLowerCase()) >= 0;
}
});

$(".results tbody tr").not(":containsi('" + searchSplit + "')").each(function(e){
$(this).attr('visible','false');
});

$(".results tbody tr:containsi('" + searchSplit + "')").each(function(e){
$(this).attr('visible','true');
});

var jobCount = $('.results tbody tr[visible="true"]').length;
$('.counter').text(jobCount + ' item(s)');

if(jobCount == '0') {$('.no-result').show();}
else {$('.no-result').hide();}
});
});

.results tr[visible='false'],
.no-result{
display:none;
}

.results tr[visible='true']{
display:table-row;
}

.counter{
padding:8px;
color:#ccc;
}

<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>TDGEventos</title>

<link rel="icon" href="" title="icon">

<!--CSS -->
<link rel="stylesheet" href="/public/css/bootstrap.css">
<link rel="stylesheet" href="/public/css/style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="/public/js/quicksearch.js"></script>

<!--carrega o navbar e o footer-->
<% include layout-nav-footer %>

</head>

<body>

<!--Botao de pesquisa-->
<div class="container">
<div class="row col-lg-12">


<div class="form-group pull-right">
<h2>Eventos</h2>
<input type="text" class="search form-control d-flex" placeholder="Pesquisar eventos">
<span class="container counter pull-right"></span>
</div>

<!--Tabela de resultados-->

<table class="col-md-12 table table-hover table-bordered results">
<thead>
<tr>
<th>Nome</th>
<th>Data de Inicio</th>
<th>Categoria</th>
<th>Premiação</th>
<th class="text-center" colspan="2">Editar</th>
</tr>
<tr class="warning no-result">
<td colspan="5"><i class="fa fa-warning"></i>Sem resultados!</td>
</tr>
</thead>
<tbody>
<% for (var i = 0; i < eventos.length; i++) { %>
<tr>
<td><%= eventos[i].nome_evento %></td>
<td><%= eventos[i].data_formatada %></td>
<td><%= eventos[i].categoria %></td>
<td><%= eventos[i].premiacao %></td>
<td hidden><%= eventos[i].idUser = usuario%></td>
<form action="/entrar-evento" method="POST" >
<input style="display:none"name="id" value="<%=eventos[i].id%>">
<td><button id="cadastrar" class="btn btn-dark btn-change6" type="submit">entrar</button></a></td>
</form>
</tr>
<% } %>
</tbody>
</table>
</div>
</div>

</body>
</html>












share|improve this question







New contributor




Altair Todescatto F is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
























    up vote
    4
    down vote

    favorite












    I`m curretly working on a project using express and EJS and MySQL as DB. I tried put a search bar on a page that show a list of current events, the events are put on a table using EJS to get data from the database. The counter looks like its working, but the search doesnt hide the not expected results on the table. Any sugestions? (The snippet wont run properly the entire tablesince we dont get the rest of server and code)






    $(document).ready(function() {
    $(".search").keyup(function () {
    var searchTerm = $(".search").val();
    var listItem = $('.results tbody').children('tr');
    var searchSplit = searchTerm.replace(/ /g, "'):containsi('")

    $.extend($.expr[':'], {'containsi': function(elem, i, match, array){
    return (elem.textContent || elem.innerText || '').toLowerCase().indexOf((match[3] || "").toLowerCase()) >= 0;
    }
    });

    $(".results tbody tr").not(":containsi('" + searchSplit + "')").each(function(e){
    $(this).attr('visible','false');
    });

    $(".results tbody tr:containsi('" + searchSplit + "')").each(function(e){
    $(this).attr('visible','true');
    });

    var jobCount = $('.results tbody tr[visible="true"]').length;
    $('.counter').text(jobCount + ' item(s)');

    if(jobCount == '0') {$('.no-result').show();}
    else {$('.no-result').hide();}
    });
    });

    .results tr[visible='false'],
    .no-result{
    display:none;
    }

    .results tr[visible='true']{
    display:table-row;
    }

    .counter{
    padding:8px;
    color:#ccc;
    }

    <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
    <!DOCTYPE html>
    <html lang="pt-br">
    <head>
    <meta charset="UTF-8">
    <title>TDGEventos</title>

    <link rel="icon" href="" title="icon">

    <!--CSS -->
    <link rel="stylesheet" href="/public/css/bootstrap.css">
    <link rel="stylesheet" href="/public/css/style.css">
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
    <script src="/public/js/quicksearch.js"></script>

    <!--carrega o navbar e o footer-->
    <% include layout-nav-footer %>

    </head>

    <body>

    <!--Botao de pesquisa-->
    <div class="container">
    <div class="row col-lg-12">


    <div class="form-group pull-right">
    <h2>Eventos</h2>
    <input type="text" class="search form-control d-flex" placeholder="Pesquisar eventos">
    <span class="container counter pull-right"></span>
    </div>

    <!--Tabela de resultados-->

    <table class="col-md-12 table table-hover table-bordered results">
    <thead>
    <tr>
    <th>Nome</th>
    <th>Data de Inicio</th>
    <th>Categoria</th>
    <th>Premiação</th>
    <th class="text-center" colspan="2">Editar</th>
    </tr>
    <tr class="warning no-result">
    <td colspan="5"><i class="fa fa-warning"></i>Sem resultados!</td>
    </tr>
    </thead>
    <tbody>
    <% for (var i = 0; i < eventos.length; i++) { %>
    <tr>
    <td><%= eventos[i].nome_evento %></td>
    <td><%= eventos[i].data_formatada %></td>
    <td><%= eventos[i].categoria %></td>
    <td><%= eventos[i].premiacao %></td>
    <td hidden><%= eventos[i].idUser = usuario%></td>
    <form action="/entrar-evento" method="POST" >
    <input style="display:none"name="id" value="<%=eventos[i].id%>">
    <td><button id="cadastrar" class="btn btn-dark btn-change6" type="submit">entrar</button></a></td>
    </form>
    </tr>
    <% } %>
    </tbody>
    </table>
    </div>
    </div>

    </body>
    </html>












    share|improve this question







    New contributor




    Altair Todescatto F is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.






















      up vote
      4
      down vote

      favorite









      up vote
      4
      down vote

      favorite











      I`m curretly working on a project using express and EJS and MySQL as DB. I tried put a search bar on a page that show a list of current events, the events are put on a table using EJS to get data from the database. The counter looks like its working, but the search doesnt hide the not expected results on the table. Any sugestions? (The snippet wont run properly the entire tablesince we dont get the rest of server and code)






      $(document).ready(function() {
      $(".search").keyup(function () {
      var searchTerm = $(".search").val();
      var listItem = $('.results tbody').children('tr');
      var searchSplit = searchTerm.replace(/ /g, "'):containsi('")

      $.extend($.expr[':'], {'containsi': function(elem, i, match, array){
      return (elem.textContent || elem.innerText || '').toLowerCase().indexOf((match[3] || "").toLowerCase()) >= 0;
      }
      });

      $(".results tbody tr").not(":containsi('" + searchSplit + "')").each(function(e){
      $(this).attr('visible','false');
      });

      $(".results tbody tr:containsi('" + searchSplit + "')").each(function(e){
      $(this).attr('visible','true');
      });

      var jobCount = $('.results tbody tr[visible="true"]').length;
      $('.counter').text(jobCount + ' item(s)');

      if(jobCount == '0') {$('.no-result').show();}
      else {$('.no-result').hide();}
      });
      });

      .results tr[visible='false'],
      .no-result{
      display:none;
      }

      .results tr[visible='true']{
      display:table-row;
      }

      .counter{
      padding:8px;
      color:#ccc;
      }

      <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
      <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
      <!DOCTYPE html>
      <html lang="pt-br">
      <head>
      <meta charset="UTF-8">
      <title>TDGEventos</title>

      <link rel="icon" href="" title="icon">

      <!--CSS -->
      <link rel="stylesheet" href="/public/css/bootstrap.css">
      <link rel="stylesheet" href="/public/css/style.css">
      <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
      <script src="/public/js/quicksearch.js"></script>

      <!--carrega o navbar e o footer-->
      <% include layout-nav-footer %>

      </head>

      <body>

      <!--Botao de pesquisa-->
      <div class="container">
      <div class="row col-lg-12">


      <div class="form-group pull-right">
      <h2>Eventos</h2>
      <input type="text" class="search form-control d-flex" placeholder="Pesquisar eventos">
      <span class="container counter pull-right"></span>
      </div>

      <!--Tabela de resultados-->

      <table class="col-md-12 table table-hover table-bordered results">
      <thead>
      <tr>
      <th>Nome</th>
      <th>Data de Inicio</th>
      <th>Categoria</th>
      <th>Premiação</th>
      <th class="text-center" colspan="2">Editar</th>
      </tr>
      <tr class="warning no-result">
      <td colspan="5"><i class="fa fa-warning"></i>Sem resultados!</td>
      </tr>
      </thead>
      <tbody>
      <% for (var i = 0; i < eventos.length; i++) { %>
      <tr>
      <td><%= eventos[i].nome_evento %></td>
      <td><%= eventos[i].data_formatada %></td>
      <td><%= eventos[i].categoria %></td>
      <td><%= eventos[i].premiacao %></td>
      <td hidden><%= eventos[i].idUser = usuario%></td>
      <form action="/entrar-evento" method="POST" >
      <input style="display:none"name="id" value="<%=eventos[i].id%>">
      <td><button id="cadastrar" class="btn btn-dark btn-change6" type="submit">entrar</button></a></td>
      </form>
      </tr>
      <% } %>
      </tbody>
      </table>
      </div>
      </div>

      </body>
      </html>












      share|improve this question







      New contributor




      Altair Todescatto F is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      I`m curretly working on a project using express and EJS and MySQL as DB. I tried put a search bar on a page that show a list of current events, the events are put on a table using EJS to get data from the database. The counter looks like its working, but the search doesnt hide the not expected results on the table. Any sugestions? (The snippet wont run properly the entire tablesince we dont get the rest of server and code)






      $(document).ready(function() {
      $(".search").keyup(function () {
      var searchTerm = $(".search").val();
      var listItem = $('.results tbody').children('tr');
      var searchSplit = searchTerm.replace(/ /g, "'):containsi('")

      $.extend($.expr[':'], {'containsi': function(elem, i, match, array){
      return (elem.textContent || elem.innerText || '').toLowerCase().indexOf((match[3] || "").toLowerCase()) >= 0;
      }
      });

      $(".results tbody tr").not(":containsi('" + searchSplit + "')").each(function(e){
      $(this).attr('visible','false');
      });

      $(".results tbody tr:containsi('" + searchSplit + "')").each(function(e){
      $(this).attr('visible','true');
      });

      var jobCount = $('.results tbody tr[visible="true"]').length;
      $('.counter').text(jobCount + ' item(s)');

      if(jobCount == '0') {$('.no-result').show();}
      else {$('.no-result').hide();}
      });
      });

      .results tr[visible='false'],
      .no-result{
      display:none;
      }

      .results tr[visible='true']{
      display:table-row;
      }

      .counter{
      padding:8px;
      color:#ccc;
      }

      <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
      <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
      <!DOCTYPE html>
      <html lang="pt-br">
      <head>
      <meta charset="UTF-8">
      <title>TDGEventos</title>

      <link rel="icon" href="" title="icon">

      <!--CSS -->
      <link rel="stylesheet" href="/public/css/bootstrap.css">
      <link rel="stylesheet" href="/public/css/style.css">
      <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
      <script src="/public/js/quicksearch.js"></script>

      <!--carrega o navbar e o footer-->
      <% include layout-nav-footer %>

      </head>

      <body>

      <!--Botao de pesquisa-->
      <div class="container">
      <div class="row col-lg-12">


      <div class="form-group pull-right">
      <h2>Eventos</h2>
      <input type="text" class="search form-control d-flex" placeholder="Pesquisar eventos">
      <span class="container counter pull-right"></span>
      </div>

      <!--Tabela de resultados-->

      <table class="col-md-12 table table-hover table-bordered results">
      <thead>
      <tr>
      <th>Nome</th>
      <th>Data de Inicio</th>
      <th>Categoria</th>
      <th>Premiação</th>
      <th class="text-center" colspan="2">Editar</th>
      </tr>
      <tr class="warning no-result">
      <td colspan="5"><i class="fa fa-warning"></i>Sem resultados!</td>
      </tr>
      </thead>
      <tbody>
      <% for (var i = 0; i < eventos.length; i++) { %>
      <tr>
      <td><%= eventos[i].nome_evento %></td>
      <td><%= eventos[i].data_formatada %></td>
      <td><%= eventos[i].categoria %></td>
      <td><%= eventos[i].premiacao %></td>
      <td hidden><%= eventos[i].idUser = usuario%></td>
      <form action="/entrar-evento" method="POST" >
      <input style="display:none"name="id" value="<%=eventos[i].id%>">
      <td><button id="cadastrar" class="btn btn-dark btn-change6" type="submit">entrar</button></a></td>
      </form>
      </tr>
      <% } %>
      </tbody>
      </table>
      </div>
      </div>

      </body>
      </html>








      $(document).ready(function() {
      $(".search").keyup(function () {
      var searchTerm = $(".search").val();
      var listItem = $('.results tbody').children('tr');
      var searchSplit = searchTerm.replace(/ /g, "'):containsi('")

      $.extend($.expr[':'], {'containsi': function(elem, i, match, array){
      return (elem.textContent || elem.innerText || '').toLowerCase().indexOf((match[3] || "").toLowerCase()) >= 0;
      }
      });

      $(".results tbody tr").not(":containsi('" + searchSplit + "')").each(function(e){
      $(this).attr('visible','false');
      });

      $(".results tbody tr:containsi('" + searchSplit + "')").each(function(e){
      $(this).attr('visible','true');
      });

      var jobCount = $('.results tbody tr[visible="true"]').length;
      $('.counter').text(jobCount + ' item(s)');

      if(jobCount == '0') {$('.no-result').show();}
      else {$('.no-result').hide();}
      });
      });

      .results tr[visible='false'],
      .no-result{
      display:none;
      }

      .results tr[visible='true']{
      display:table-row;
      }

      .counter{
      padding:8px;
      color:#ccc;
      }

      <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
      <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
      <!DOCTYPE html>
      <html lang="pt-br">
      <head>
      <meta charset="UTF-8">
      <title>TDGEventos</title>

      <link rel="icon" href="" title="icon">

      <!--CSS -->
      <link rel="stylesheet" href="/public/css/bootstrap.css">
      <link rel="stylesheet" href="/public/css/style.css">
      <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
      <script src="/public/js/quicksearch.js"></script>

      <!--carrega o navbar e o footer-->
      <% include layout-nav-footer %>

      </head>

      <body>

      <!--Botao de pesquisa-->
      <div class="container">
      <div class="row col-lg-12">


      <div class="form-group pull-right">
      <h2>Eventos</h2>
      <input type="text" class="search form-control d-flex" placeholder="Pesquisar eventos">
      <span class="container counter pull-right"></span>
      </div>

      <!--Tabela de resultados-->

      <table class="col-md-12 table table-hover table-bordered results">
      <thead>
      <tr>
      <th>Nome</th>
      <th>Data de Inicio</th>
      <th>Categoria</th>
      <th>Premiação</th>
      <th class="text-center" colspan="2">Editar</th>
      </tr>
      <tr class="warning no-result">
      <td colspan="5"><i class="fa fa-warning"></i>Sem resultados!</td>
      </tr>
      </thead>
      <tbody>
      <% for (var i = 0; i < eventos.length; i++) { %>
      <tr>
      <td><%= eventos[i].nome_evento %></td>
      <td><%= eventos[i].data_formatada %></td>
      <td><%= eventos[i].categoria %></td>
      <td><%= eventos[i].premiacao %></td>
      <td hidden><%= eventos[i].idUser = usuario%></td>
      <form action="/entrar-evento" method="POST" >
      <input style="display:none"name="id" value="<%=eventos[i].id%>">
      <td><button id="cadastrar" class="btn btn-dark btn-change6" type="submit">entrar</button></a></td>
      </form>
      </tr>
      <% } %>
      </tbody>
      </table>
      </div>
      </div>

      </body>
      </html>





      $(document).ready(function() {
      $(".search").keyup(function () {
      var searchTerm = $(".search").val();
      var listItem = $('.results tbody').children('tr');
      var searchSplit = searchTerm.replace(/ /g, "'):containsi('")

      $.extend($.expr[':'], {'containsi': function(elem, i, match, array){
      return (elem.textContent || elem.innerText || '').toLowerCase().indexOf((match[3] || "").toLowerCase()) >= 0;
      }
      });

      $(".results tbody tr").not(":containsi('" + searchSplit + "')").each(function(e){
      $(this).attr('visible','false');
      });

      $(".results tbody tr:containsi('" + searchSplit + "')").each(function(e){
      $(this).attr('visible','true');
      });

      var jobCount = $('.results tbody tr[visible="true"]').length;
      $('.counter').text(jobCount + ' item(s)');

      if(jobCount == '0') {$('.no-result').show();}
      else {$('.no-result').hide();}
      });
      });

      .results tr[visible='false'],
      .no-result{
      display:none;
      }

      .results tr[visible='true']{
      display:table-row;
      }

      .counter{
      padding:8px;
      color:#ccc;
      }

      <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
      <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
      <!DOCTYPE html>
      <html lang="pt-br">
      <head>
      <meta charset="UTF-8">
      <title>TDGEventos</title>

      <link rel="icon" href="" title="icon">

      <!--CSS -->
      <link rel="stylesheet" href="/public/css/bootstrap.css">
      <link rel="stylesheet" href="/public/css/style.css">
      <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
      <script src="/public/js/quicksearch.js"></script>

      <!--carrega o navbar e o footer-->
      <% include layout-nav-footer %>

      </head>

      <body>

      <!--Botao de pesquisa-->
      <div class="container">
      <div class="row col-lg-12">


      <div class="form-group pull-right">
      <h2>Eventos</h2>
      <input type="text" class="search form-control d-flex" placeholder="Pesquisar eventos">
      <span class="container counter pull-right"></span>
      </div>

      <!--Tabela de resultados-->

      <table class="col-md-12 table table-hover table-bordered results">
      <thead>
      <tr>
      <th>Nome</th>
      <th>Data de Inicio</th>
      <th>Categoria</th>
      <th>Premiação</th>
      <th class="text-center" colspan="2">Editar</th>
      </tr>
      <tr class="warning no-result">
      <td colspan="5"><i class="fa fa-warning"></i>Sem resultados!</td>
      </tr>
      </thead>
      <tbody>
      <% for (var i = 0; i < eventos.length; i++) { %>
      <tr>
      <td><%= eventos[i].nome_evento %></td>
      <td><%= eventos[i].data_formatada %></td>
      <td><%= eventos[i].categoria %></td>
      <td><%= eventos[i].premiacao %></td>
      <td hidden><%= eventos[i].idUser = usuario%></td>
      <form action="/entrar-evento" method="POST" >
      <input style="display:none"name="id" value="<%=eventos[i].id%>">
      <td><button id="cadastrar" class="btn btn-dark btn-change6" type="submit">entrar</button></a></td>
      </form>
      </tr>
      <% } %>
      </tbody>
      </table>
      </div>
      </div>

      </body>
      </html>






      javascript html node.js twitter-bootstrap search






      share|improve this question







      New contributor




      Altair Todescatto F is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      share|improve this question







      New contributor




      Altair Todescatto F is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      share|improve this question




      share|improve this question






      New contributor




      Altair Todescatto F is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked yesterday









      Altair Todescatto F

      211




      211




      New contributor




      Altair Todescatto F is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      Altair Todescatto F is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      Altair Todescatto F is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





























          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });






          Altair Todescatto F is a new contributor. Be nice, and check out our Code of Conduct.










           

          draft saved


          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53264922%2fsearch-bar-on-ejs-application%23new-answer', 'question_page');
          }
          );

          Post as a guest





































          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          Altair Todescatto F is a new contributor. Be nice, and check out our Code of Conduct.










           

          draft saved


          draft discarded


















          Altair Todescatto F is a new contributor. Be nice, and check out our Code of Conduct.













          Altair Todescatto F is a new contributor. Be nice, and check out our Code of Conduct.












          Altair Todescatto F is a new contributor. Be nice, and check out our Code of Conduct.















           


          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53264922%2fsearch-bar-on-ejs-application%23new-answer', 'question_page');
          }
          );

          Post as a guest




















































































          Popular posts from this blog

          Biblatex bibliography style without URLs when DOI exists (in Overleaf with Zotero bibliography)

          ComboBox Display Member on multiple fields

          Is it possible to collect Nectar points via Trainline?