Using jQuery to create a drop down div
In this tutorial, we will be using jQuery to make a drop down box that fires on a click. Lets start with some css body{ background-color:#000; font-family:Arial, Helvetica, sans-serif; }...
View ArticleUsing jQuery to load ajax content with a loading image
Following on from our previous post on using jquery to make an ajax load, we are now going to do something very similar, but with an ajax loading image. Loading images, or loaders, are very important...
View ArticleUsing jQuery to post a form with ajax
In this tutorial we will be using jQuery to post a form with ajax. Basically, that means we will be posting data captured in a form to another page to get processed, and we will be getting the result...
View ArticleUsing jQuery with the Yii framework
The Yii framework is my personal favorite PHP framework by miles. Today we are going to be learning about using jQuery with the Yii framework. Why is this any different from using jQuery in any other...
View ArticleUsing jQuery’s this selector
In this tutorial we will be looking at jQuery’s this selector. What’s a this you ask? Lets look at an example: <ul> <li class="option">Cat</li> <li...
View ArticleUsing jQuery – javascript for beginners
In this post, we will be looking at some very basic javscript for people new to javascript (and jQuery). Lets get it on! First thing to learn is how and where to use javascript. Javscript can be placed...
View ArticleUsing jQuery to animate a div
In this post we will be looking at jQuery’s animate event. What does animate do? Elementary my dear Watson, it animates stuff! We are going to be making a div that when clicked (using jQuery’s click...
View ArticleUsing jQuery for form validation
Today we will be looking at using jQuery for some really easy form validation. We will be looking at the real basic here and keeping it real simple. Enjoy First, lets make a form with a text field and...
View ArticleMaking a swoopo style count down timer with jQuery
Today we will be using jQuery to make a swoopo style countdown timer clone. Out timer will count down from a set amount, but when an element is clicked, more time will be added to the timer. Let’s...
View ArticleUsing jQuery to make a fade in button
Today we will be looking at using jQuery to make a button with two states, a normal state and a hover state. But instead of making it change immediately, we will be making a nice fade in effect using,...
View Article