This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function() { | |
// if text input field value is not empty show the "X" button | |
$("#field").keyup(function() { | |
$("#x").fadeIn(); | |
if ($.trim($("#field").val()) == "") { | |
$("#x").fadeOut(); | |
} | |
}); | |
// on click of "X", delete input field value and hide "X" | |
$("#x").click(function() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* search form div container */ | |
#searchform { | |
margin:20px; | |
} | |
/* Styling the search input field */ | |
#field { | |
float:left; | |
width:300px; | |
height:27px; |