Response title
This is preview!




| $('#mag').click(function (event) { | |
| formSubmit(); | |
| }); | |
| $(window).load(function () { | |
| $("#q").keyup(function () { | |
| var SEARCHWORD = this.value; | |
| $("#MAIN_UL li").each(function () { | |
| if ($(this). | |
| find("a"). | |
| text().toUpperCase(). | |
| indexOf(SEARCHWORD.toUpperCase()) >= 0) | |
| $(this).show(); | |
| else | |
| $(this).hide(); | |
| }); | |
| }); | |
| }); |
© 2012 jQuery Foundation
Sponsored by
and others.
