Tag Archives: AJAX What Is It

JQuery Video Tutorial Pt 4

JQuery The DOMI’ve received many requests to cover Document Object Model manipulation with JQuery. So, in this JQuery Video Tutorial I’ll show you numerous ways to add and delete elements to the DOM.

JQuery provides numerous ways to add elements and precise ways to delete others. I’ll specifically cover the following functions: before(), insertBefore(), prependTo(), appendTo(), append(), insertAfter(), after() and remove().

Continue reading JQuery Video Tutorial Pt 4

JQuery Video Tutorial

JQuery Ajax TutorialThis is the first part of my JQuery Video Tutorial. I will also cover all of the techniques that go into implementing a dynamic site using Asynchronous JavaScript and XML (AJAX).

It is extremely easy to use AJAX techniques with JQuery. First you must understand that AJAX is not a language, it is just a series of techniques used to dynamically change websites with out page reloads.

If you’d prefer to read about AJAX, here is another article Ajax What is it?

Continue reading JQuery Video Tutorial

JQuery & AJAX Mouse Event Handler’s

I forgot to cover in depth mouse event handler’s in the last presentation. If you add the following code to my previous JQuery & AJAX tutorial on Event Handler’s, we should be good to go.

You just need to add a little bit of code to implement mouse event handler’s. Change the code where I assign event handler’s to the body to this:

$(‘#theBody’).bind(‘keyup’,checkKeyPressed).bind(‘mousemove’,theMouseMoved);

Continue reading JQuery & AJAX Mouse Event Handler’s

JQuery & AJAX Selecting & Editing Elements

In this article, I’m going to walk you through some code that I styled with JQuery. You’ll learn:

  • How to select elements in your web page numerous ways
  • How to edit elements in your web page in numerous ways
  • Learn how to monitor event handler’s with JQuery and JavaScript
  • And a bunch more…

Continue reading JQuery & AJAX Selecting & Editing Elements