Code: Select all
$(document).ready(function() {
$("searchb").change(function () {
$.post("searchtest.php", {partialName: $(this).val()},function(data) {
$("#results").html(data);
});
});
});[text]<p class="em_text"> <input id="searchb" type="text"/></p>[/text]
i ran firebug, and it reports no errors. what could be the problem?