Thanks to Dave and Apinpatab,
Here is the best code that I have that works.
- $('.search-link').bind('click', function(event) {
event.preventDefault();
$.get(this.href, {}, function(reply) {
$("#results").html(reply);
}, "html");
});
None of the codes presented above worked but this one does the trick and it is clean. You can see that there are pieces of everyone's code in here, so their contributions helped find the right answer.