I facing problem with my jquery, on showing input text based on input value. Here is the JS fiddle demo :
http://jsfiddle.net/Ltapp/364/
When I try to input @hot
It's because your selector $("input") affects both input elements. I have updated it to the $("input:first") selector instead. JsFiddle here
$("input")
$("input:first")
$("input:first").keyup(function () { var value = $(this).val(); if(value.match(myString)) { $('#hotm').show(); } else { $('#hotm').hide(); } });