﻿$(document).ready(function() {

  $(".forumsSearch").click(function() {
  alert(location.href);

    $.ajax({

      type: "POST",
      url: "/Forum/GetSearchResults",
      data: "searchTerm=" + $("#forumsSearchTerm").val(),

      success: function(result) {
        $(".forumsContainer").html(result);
      },
      error: function(result) {
        //alert(result.status);
      }

    });

  });

});
