var d = document.getElementById("dashboard-sidenav"); d.className += " active theme-primary"; $( document ).ready(function() { $("#apps-filter").on('keyup', function(e) { var value = $(this).val().toLowerCase(); $(".app-a").each(function(i, e) { if ($(this).attr("data-name").toLowerCase().indexOf(value) > -1 || $(this).attr("data-description").toLowerCase().indexOf(value) > -1) { $(this).removeClass('hide'); } else { $(this).addClass('hide'); } }); }); $(".data-source-container").each(function(e) { var el = $(this); $.ajax({ url: el.attr('data-url'), type: 'GET', data: {id: el.attr('data-id')}, success: function(data){ el.closest('.col').find('.data-source-loading').addClass('hide'); el.html(data); } }); }); });