Ajax Course

AJAX (Asynchronous Javascript and XML) is a set of technologies that allows you to create Web applications that don't need to refresh Web pages in the browser. You can operate behind the scenes, connecting to the server, uploading and downloading data, and display the results in the browser using JavaScript and HTML
- Here you will find links to pages where you can download for free various resources to learn Ajax; ebooks in PDF-format, audio-video courses and tutorials.
- All resources posted here are not hosted on this server

Ajax Course Ebooks

  1. Sams Teach Yourself Ajax JavaScript and PHP All in One (2008) (3.4 MB)
    • In just a short time, you can learn how to use and combine Ajax, JavaScript and PHP. No previous Ajax programming experience is required.
      With the lessons from this ebook you can learn how to make JavaScript, HTML, XML, and PHP work together to create Ajax effects, create and consume web services with SOAP and REST, use popular Ajax libraries to speed up and improve common programming tasks.
  2. AJAX and PHP Building Modern Web Applications 2nd Edition (2009) (4.4 MB)
    • This resource is a step-by-step example-driven AJAX tutorial. Each chapter contains a friendly mix of theory and practice with simple and advanced aplications, so that your journey through the lessons will be pleasant and efficient.
      This book is written for PHP developers who want to learn how to use PHP, JavaScript, MySQL and jQuery to implement Web 2.0 applications, and want to learn advanced AJAX coding patterns and techniques.
      The downloadable file (RAR arhive) contains also the complete source code examples from the book.
  3. Beginning Ajax with PHP from Novice to Professional (2007) (4.1 MB)
    • Beginning Ajax with PHP: From Novice to Professional is a book to introduce how these two popular technologies can work together to create web applications. It shows you how to build PHP / AJAX-enabled solutions for forms validation, file upload monitoring, database-driven information display and manipulation, web services, Google Maps integration, and more.
      The arhive from the download link includes also files with source code of the examples from the book.
  4. Comet and Reverse Ajax: The Next-Generation Ajax 2.0 (13.6 MB)
    • Usually the client, not the server, must initiate any communication between the two. There are some cases where, ideally, the server would like to talk to the client-dashboards (chat rooms and other progress reports on long–running processes). Comet (a.k.a. Reverse Ajax) provides a mechanism for enabling this.
      Comet is moderately complex to implement. But this practical, hands-on book (148 pages) gets you going.
      - In Part 1 of this book we look at the simple alternatives to Comet and how far they can satisfy your needs.
      - In Part 2, it demonstrates how to set up and run a Comet–based application.
      With the lessons from this ebook you'll learn what Comet is, how to use implementations of Comet, including Cometd/Bayeaux, Reverse Ajax in DWR, and more. In the end you'll work through an example using DWR Framework.
      - The downloadable arhive contains also files with the example code used in this ebook.

Video courses and tutorials

  1. AJAX Crash Course (64 MB)
    • An AJAX video resource ( by SitePoint) divided into three video lessons that explore the technologies that come together in AJAX applications, and give hands-on examples of how to apply them. These technologies include the Document Object Model (DOM), Extensible Markup Language (XML), javascript, and XMLHttpRequest (XHR).
  2. AJAX Essential Training (211 MB)
    • These AJAX video lessons (from Lynda.com) show experienced web developers how to utilize AJAX to create dynamic pages. The course selects the best tools for the job (HTML, CSS, JavaScript and XML), understanding the main aspects of HTTP from requests to responses, and creating dynamic forms and maps from static HTML and CSS files. It also explains in detail how to get and use the Yahoo! UI framework.
      - Exercise Files are Included.
  3. How To Create Ajax Web Applications Using JQuery (405 MB)
    • Step by step video tutorials with 2 and a half hours of video instruction, this AJAX-JQuery course can help you to make your Web sites more usable, more interactive and responsive.
      Includes demo examples and source code.
  4. VTC - AJAX Training Tutorials (191 MB)
    • This course contains 12 chapters that include 97 video tutorials (over 7 hours).
      It helps you get started developing and building your own Ajax web pages. A familiarity with JavaScript, XML, PHP is recommended for this course.

- The video lessons in MOV format can be watched with QuickTime player.
- You can download it from:   apple.com/quicktime/download/

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
Which tag defines the clickable areas inside the image map?
<map> <img> <area>
<img src="image.jpg" usemap="#map1">
<map name="map1">
  <area shape="rect" coords="9, 120, 56, 149" href="#">
  <area shape="rect" coords="100, 200, 156, 249" href="#">
</map>
Which CSS property defines what is done if the content in a box is too big for its defined space?
display overflow position
#id {
  overflow: auto;
}
Click on the event which is triggered when the mouse is positioned over an object.
onclick onmouseover onmouseout
document.getElementById("id").onmouseover = function(){
  document.write("Have Good Life");
}
Indicate the PHP variable that contains data added in URL address after the "?" character.
$_SESSION $_GET $_POST
if(isset($_GET["id"])) {
  echo $_GET["id"];
}
Download AJAX resources

Last accessed pages

  1. Voting Poll System script PHP-AJAX (8609)
  2. Create simple Website with PHP (43822)
  3. PHP PDO - exec (INSERT, UPDATE, DELETE) MySQL (55415)
  4. Styling HTML table with CSS (372)
  5. this and target in JavaScript Events (1755)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (250)
  2. Read Excel file data in PHP - PhpExcelReader (87)
  3. The Four Agreements (73)
  4. PHP Unzipper - Extract Zip, Rar Archives (73)
  5. The Mastery of Love (65)
Chat
Chat or leave a message for the other users
Full screenInchide