$.ajax textStatus always == "success"

$.ajax textStatus always == "success"

Hi All -

I've got this:

  1. $.ajax({
        url:        "URLHERE",
        complete:    function(a, b){
            alert(a.status);
            alert(b);
        }
    });





Problem is Firebug shows my request for the same URL as '304 Not Modified', but the ajax call is always '200 Success'.  Can anyone give me any reasons as to why I wouldn't be getting 'notmodified' back for textStatus?

Thanks!