$ nicht definiert ist
[Break On This Error] $(function(){
Ich habe eine einfache index.php-Seite, die einen PHP-Include ausführt, um die von mir benötigten Inhalte einzuschließen.
Der Inhalt ist wie folgt:
Code: Select all
$(function(){
$("#ipad").submit(function() {
$.post("ipadcheck.php", $("#ipad").serialize(),
function(data) {
if(data.error == 'TRUE') {
$("#results_ajax").html("Sorry There were Errors: " + data.error_message + "");
} else {
$("#results_ajax").html("" + data.display + " ");
}
}, "json");
return false;
});
});
Zip Code: