User:Dixtosa/SearchInTranslations.js

Hello, you have come here looking for the meaning of the word User:Dixtosa/SearchInTranslations.js. In DICTIOUS you will not only get to know all the dictionary meanings for the word User:Dixtosa/SearchInTranslations.js, but we will also tell you about its etymology, its characteristics and you will know how to say User:Dixtosa/SearchInTranslations.js in singular and plural. Everything you need to know about the word User:Dixtosa/SearchInTranslations.js you have here. The definition of the word User:Dixtosa/SearchInTranslations.js will help you to be more precise and correct when speaking or writing your texts. Knowing the definition ofUser:Dixtosa/SearchInTranslations.js, as well as those of other words, enriches your vocabulary and provides you with more and better linguistic resources.
$input = $("<input type='text' />").on("input", function(){
    var query = $(this).val().toLowerCase();
    $(this).closest(".NavFrame").children(".NavContent").show().find(".translations tr:first-child li").each(function(){
         this.style.display = this.textContent.toLowerCase().indexOf(query) != -1 ? "block" : "none";
    });
});

$searchDiv = $("<div>").css("display", "inline-block").css("position", "relative").css("left", "25px").append("Search in translations:").append($input);

$(".translations").closest(".NavFrame").children(".NavHead").append($searchDiv);