In this series of tutorial’s I will show you how to use the amazing JQuery Framework. Not only that, but I’ll show you how to use it to master your Ajax techniques.
If you don’t know, Ajax is an approach to using HTML, JavaScript, DHTML, and the DOM. It allows you to create interactive web...
Posted by
admin on May 25, 2010 in
AJAX What Is It |
0 comments
Here I show you multiple ways you can retrieve text and xml from the server, using JQuery and AJAX technique’s. Of course, this works without a page reload. I’ll also show you how to send data to the PHP server for processing. Like always I’ll walk you through the code and explain...
Posted by
admin on May 24, 2010 in
AJAX What Is It |
0 comments
In this article, I’ll show you a bunch of ways to animate text and image’s using JQuery. Like always, I’ll provide snippets of code followed by an explanation on what it does. Let’s start animating.
<html>
<head>
<title>JQuery Example</title>
<script...
Posted by
admin on May 24, 2010 in
AJAX What Is It |
0 comments
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...
Posted by
admin on May 23, 2010 in
AJAX What Is It |
0 comments
Here I’ll walk you through a lot of code to explain how you can use Event Handler’s with JQuery and AJAX. To start you off here are all the JQuery Event Handlers and Event Object Properties:
JQuery Event Handler’s
blur() : Triggered when you leave an element
change() : Triggered when an...
Posted by
admin on May 21, 2010 in
AJAX What Is It |
0 comments
I received email’s stating that I missed some of the way’s you can select elements. I was going to introduce the others as I continued this tutorial. But, you asked for it! So in this article, I’ll give you every other way I know to select element’s with JQuery.
Selecting...
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...
Posted by
admin on May 18, 2010 in
AJAX What Is It |
0 comments
I’ve received many requests for both an AJAX and a JQuery tutorial. So, I’ll cover them both in the same series of articles, because they work well together. I wrote an earlier article on How to AJAX, but I’ll briefly go through what AJAX and JQuery is in this article.
What is AJAX?
There is much...
Posted by
admin on Apr 26, 2010 in
AJAX What Is It |
0 comments
In the last article, I explained what AJAX is and showed you how to dynamically change the text in DIV’s and SPAN’s without reloading the page. In this article I’ll show you how to place text from your server in DIV’s and SPAN’s, without reloading the page.
All About Events
Most of the time you...
Posted by
admin on Apr 25, 2010 in
AJAX What Is It |
1 comment
There is much confusion concerning Asynchronous JavaScript and XML (AJAX). First off AJAX is not a programming language. It provides a new way for you to use the languages I’ve taught you in previous tutorials:
HTML
Cascading Style Sheets
JavaScript
PHP
XML
AJAX provides you with the ability...