$ not defined in JavaScript
Firebug is reporting that $ is not defined [Break On This Error] $(function(){ I have a simple index.php page that does a php include to include the contents I need. The contents are as follows: <script type="text/javascript"> $(function(){ $("#ipad").submit(function() { $.post("ipadcheck.php", $("#ipad").serialize(), function(data) { if(data.error == 'TRUE') { $("#results_ajax").html("<div class='AppleRedBold'>Sorry There were Errors: " + data.error_message + "</div>"); } else { $("#results_ajax").html("<div class='AppleRedBold'>" + data.display + " </div>"); } }, "json"); return false; }); }