Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $(document).ready(function(){
- $("#m-city-search_input").keyup(function(){
- _this = this;
- $.each($(".city_ul_list a"), function() {
- if($(this).text().toLowerCase().indexOf($(_this).val().toLowerCase()) === -1) {
- $(this).parent().hide();
- } else {
- $(this).parent().show();
- }
- });
- });
- });
RAW Paste Data