Page is a not externally linkable
daveVk - 11:53 pm on Aug 28, 2012 (gmt 0)
Maybe
success: function(jsonReply) {
if (jsonReply.error) {
$("#search-form").html("<div class=\"warning\">No Results Found</div>" );
} else {
$("#search-form").html("<p><span class=\"label\">Date:</span> " + jsonReply.date + "</p>" +//);
"<p><span class=\"label\">Reference:</span> " + jsonReply.ref + "</p>" + //);
"<p><span class=\"label\">Amount:</span> " + jsonReply.amount + "</p>" + //);
"<p><span class=\"label\">Detail:</span> " + jsonReply.detail + "</p>");
}
}
You can change the red word to whatever you think relevent.