I'm currently utilizing Ajax to automatically submit a form when a key is pressed.
After the form is submitted, the page displays the resulting information
success: function (response){
$("#search_results<?php echo $HoursID ?>").html(response);
setTimeout(response, 1500);
The timeout doesn't seem to be functioning as expected. Is there something I overlooked?