Entries in Category ‘jQuery’

Hello again! In the 2nd last tutorial I wrote about Upload Multiple Files in PHP with using Uploadify but as per viewers request I am going to tell you how to add uploaded file record into mysql database in PHP with using Uploadify. Beginning with the MySQL Table Structure: CREATE TABLE `uploadify` ( `id` int(10) [...]

(Continue reading…)

Uploadify is a jQuery plugin that integrates a fully-customizable multiple file upload utility on your website. It uses a mixture of Javascript, ActionScript, and any server-side language to dynamically create an instance over any DOM element on a page.

(Continue reading…)

This is a small post for using jQuery AJAX method in PHP to check username availability, I am trying to clear your basic skill to use jQuery AJAX which is being very easy to use everywhere at the present time, while I know there is a lot of articles which had already discussed this topic. [...]

(Continue reading…)

Hello, I am back with a new and easiest way to check/uncheck all checkboxes in jQuery. Before jQuery people used to write a long code for selecting checkboxes, but here is a short and memorable script. Javascript code before jQuery: <script type="text/javascript"> function checkAll() { var inputs = document.getElementsByTagName('input'); var checkboxes = []; for (var [...]

(Continue reading…)

Now I am going to show you how to use jQuery odd and even selector. I have a very basic example to describe odd/even selectors. Description: odd and even selectors are being used to select alternative elements. odd selects the second element, forth element and so on… (1, 3, 5 etc.) even always starts with [...]

(Continue reading…)

At the present time people using jQuery everywhere. All effects are being presented by jQuery. Today I am going to show you a simple and basic login form in PHP and jQuery AJAX. I have divided login form in 3 steps. head, body and ajax response back. Ok, lets start with the first step, create [...]

(Continue reading…)