I am new at this and playing around right now to learn JQuery. I am am thankfull for resources and advice you might give. I am sending a request to a file and I want the returned results to be entered in a disabled input box
<script>
$(document).ready(function(){
$("#req_btn").click(function(){
$("#myResults").load("get_results.php");
});
});
</script>
Outcome: <input type="text" id="myResults" name="myResults" disabled>