[jQuery] "Object doesn't support this property or method" on $.post("/Validation/TestAlert",

[jQuery] "Object doesn't support this property or method" on $.post("/Validation/TestAlert",


I'm trying to figure out why the browser is complaining about the
following JavaScript which I obtained off a blog post:
var t = $(obj).parent().siblings(0).val();
$.post("/Validation/TestAlert",
{
content: t
},
function(txt){
alert(txt);
});
I get the error "Object doesn't support this property or method".
I'm trying to communicate back to my ASP.NET MVC Controller in this
case.
I got the example code from: http://www.chadmyers.com/Blog/archive/2007/12/13/using-jquery-with-asp.net-mvc.aspx