どこが間違っていますか?
jQuery(document).ready(function($){
//always focus on input field
//$('#documentID').focus();
$("#btnSubmit").on("click", function(){
var docID = $('#documentID').val();
alert("test "+docID);
var lookupData = new Array();
$.ajax({
type:"POST",
url: "lookup.php",
data: {documentID: docID},
dataType: 'text',
success: function(msg){
alert(msg);//shows Wrong as expected
//do stuff after the AJAX calls successfully completes
$("#note").ajaxComplete(function(){
if(msg == "Wrong")
{
result = 'Not so OK';
$('#logo_header').hide();//just to test things
}
else
{
result = 'OK lookup';
lookuData = msg;//populate all data
}
$(this).html(result);
});//#end ajaxComplete and populate note
}//#end success
});//#end AJAX
})//#end function
});
そしてlookup.phpは(テスト目的で)間違っているかOKを返しますが、メッセージを表示するdiv #noteを取得できず、div logo_headerが非表示になりません。
情報はありますか?