First, It could be that you need a comma after the success callback close bracket. Perhaps because this comma isn't there the ajax function doesn't know how to close itself therefore jquery ignores the function entirely.
Secondly, I agree with @Trevor's confusion about using /clientsurvey/planner.html?
as your url for this request, this should be php or foxpro or something. If it is one of these languages then you don't even need the extension, you could just do '/clientsurvey/planner?runDate='+runDate
and that should work.
Third, it is syntactically smarter to place the error
callback before the success because if the ajax function throws an error then there is no sense in jQuery wasting memory and processing capability on reading in functions that will not executed.
so, your statement changes to the following:
function sentDateToServer(){
var runDate = $('#rundate').html();
$.ajax({url: '/clientsurvey/planner?runDate=' + runDate,
type: 'GET',
error: function(xhr, asdf,){
alert(xhr + "\n\n" + asdf);
},
success: function(response){
//do something
}
});
});