(0.0)
0
Wersja: 1.00.3
Numer wersji wtyczki
Dokumentacja
Sprawdź wszystkie opcje jakie oferuje plugin
Strona wtyczki
Oficjalna witryna wtyczki
Github
Repozytorium Github
Wersja jQuery: jquery >=1.7
Wersja jQuery z którą współpracuje plugin
Licencja: MIT
Licencja
Zobacz więcej
Tagi
Instalacja
  • Biblioteki
  • JS
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="unhighlight.min.js"></script>
$(document).ready(function () {

    //Attach to all input elements
    $("input").unhighlight(function () {
        alert("Unhighlight for input element.");
    });

    //Now for all textarea elements 
    $("textarea").unhighlight(function () {
        alert("Event came from the textarea.");
    });

});