/////////////////////////////////////////////////////////////////////////// // Loader $(document).ready(function () { setTimeout(() => { $("#loader").fadeToggle(250); }, 500); // hide delay when page load }); /////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////// // Go Back $(".goBack").click(function () { window.history.back(); }); /////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////// // Tooltip $(function () { $('[data-toggle="tooltip"]').tooltip() }) /////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////// // Input $(".clear-input").click(function () { $(this).parent(".input-wrapper").find(".form-control").focus(); $(this).parent(".input-wrapper").find(".form-control").val(""); $(this).parent(".input-wrapper").removeClass("not-empty"); }); // active $(".form-group .form-control").focus(function () { $(this).parent(".input-wrapper").addClass("active"); }).blur(function () { $(this).parent(".input-wrapper").removeClass("active"); }) // empty check $(".form-group .form-control").keyup(function () { var inputCheck = $(this).val().length; if (inputCheck > 0) { $(this).parent(".input-wrapper").addClass("not-empty"); } else { $(this).parent(".input-wrapper").removeClass("not-empty"); } }); /////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////// // Searchbox Toggle $(".toggle-searchbox").click(function () { $("#search").fadeToggle(200); $("#search .form-control").focus(); });