Convert PSD to Wordpress with Divine

Yes, that’s right – you need no special extended knowledge about HTML, no special skills in coding, basics are completely enough to convert PSD to Wordpress.

Haven’t you ever wanted to have a special tool or program to easily turn your designs into themes? Well, from now on you can have this special program, this brand new product that converts Photoshop to Wordpress theme in just a several clicks.

Convert PSD to Wordpress with Divine

  • Share/Bookmark

Server Driven DataTable with Pagination / Sorting

This example builds a DataTable based on the columns information taken from the server. Instead of building a statically defined DataTable it will build it based on what the server says.

It has been based on the server-side pagination and server-side sorting examples. They have both been changed in that they do not use the DataSource to communicate with the server but use a plain Connection Manager request to fetch the information and then pass it as a local source to the DataSource. This allows full access to all the information received from the server before it gets sent to the DataTable. Reported bugs on both examples have been fixed as well.

The source files for this sample are available for download in a zip file. The PHP server script requires an active PHP interpreter. The YUI compoments are fetched from the YUI site.

  • Share/Bookmark

Star Ratings

Simple Star Rating System

It is a jQuery plugin used for star rating system. This jQuery system was created with the basic framework of the star rating system of Wil Stuckey. This jQuery plugin provides the solution on the problem of the original script requiring too much coding. It also did away with the requirement for developing a star system.

Half Star Rating Plugin

It is a jQuery plugin that was developed in response to the clamor for an enhancement of the simple rating system of Ritesh Agrawal and allow for the use of half-star rating system.

jQuery Star Rating Plugin

The Star Rating Plugin is a plugin for the jQuery Javascript library that creates a non-obstrusive star rating control based on a set of radio input boxes.

  • Share/Bookmark

jQuery Datepicker Plugins

1 – jQuery UI Library DatePicker

DatePicker control from jQuery UI library. It has many useful features and localization on various languages.

jQuery UI Library DatePicker

2 – jMonthCalendar

jMonthCalendar is a full month calendar that supports events. You simply initialize the calendar with options and an events array and it can handle the rest. The plugin does have extension points that allow the developer to interact with the calendar when the display is about to change months, after the display has changed months and when the event bubbles are clicked on. jMonthCalendar now supports hover extension points, hover over an event and trigger an event like an alert(); By default the events would each have a URL supplied that would link to a details page.

jMonthCalendar

3 – jQuery Date Picker plug-in

This is an clean, unobtrusive plugin for jQuery which allows you to easily add date inputing functionality to your web forms and pages. Designed from the ground up to be flexible and extensible, the date picker can be used in unlimited ways to allow you to add calendar widgets to your pages.

jQuery Date Picker plug-in

4 – jQuery Calendar Widget Plugin

A simple jQuery Calendar Widget Plugin with a month view. You can specify which month you would like to display or have it display the current month. With just 100 lines of Javascript code, this plugin is light-weight and perfect for its purpose.

jQuery Calendar Widget Plugin

5 – jCal – Slick jQuery Datapicker plugin

Beautiful animated calendar datepicker for multi-day selection with multi-month display. Allows for a sequence of months to reside side by side and for the user to select a number of consecutive days. This is great for lodging reservation systems, ticket purchasing systems, etc.

 jCal - Slick jQuery Datapicker plugin

6 – dyndatetime

This datepicker supports date and time, and renders the value to a single field in a configurable format.

dyndatetime

7 – Date Picker – jQuery plugin

Date Picker component with a lot of options and easy to fit in your web application.

Date Picker - jQuery plugin

8 – Date Range Picker

One more date range picker based on jquery library from Filament Group Inc.

Date Range Picker

9 – simple jQuery date-picker plugin

Interesting datepicker created by Ted Devito, still in beta version.

simple jQuery date-picker plugin

10 – Date Input

Date Input is a no frills date picker plugin for jQuery. It is small fast and pretty.

Date Input

  • Share/Bookmark

jQuery Color Picker

A simple component to select color in the same way you select color in Adobe Photoshop.

jQuery Color Picker

  • Share/Bookmark

Fancy Upload

Swiff meets Ajax for powerful and elegant uploads. FancyUpload is a file-input replacement which features an unobtrusive, multiple-file selection menu and queued upload with an animated progress bar. It is easy to setup, is server independent, completely styleable via CSS and XHTML and uses MooTools to work in all modern browsers.

Fancy Upload

  • Share/Bookmark

Mocha UI

Mocha is a web applications user interface library built on the MooTools javascript framework. The Mocha GUI components are made with <canvas> tag graphics.

Mocha UI

  • Share/Bookmark

Displaying form data in PHP

A useful piece of code I wrote to display the data sent from any type of html form, simply copy this code below into a php file and use that file as the action in the html form, When you submit the form it will display the values of the form in the next page, this can be a great when trying to figure out why something is not working correctly, say for example in a contact form.

<?php
	ob_start(); 		// Turn on output buffering
	session_start();	// Initialize Session Data

	// CALL THE FORM DATA FUNCTION
	formData(); 		

// CHECK WHAT WAS SENT FROM THE FORM
function formData(){

	$errorFound = false;
	echo '<h1>Data sent from the form</h1>';
	echo '<small>Data sent from: ' . getenv("HTTP_REFERER") . '</small>';
	foreach ($_POST as $key => $value) {
		echo '<ul>';
		if ($value){
			echo "<li>$key = $value" . "</li>";
		}else{
			echo "<li><b>$key</b> = <font color=\"red\">< No Data Sent ></font></li>";
			$errorFound = true;
		}
		echo '</ul>';
	}
	if ($errorFound){ // Message to display if there was an error
		echo '<h3>NOTE: Some of the variables contain no data!</h3>';
		echo '<b>Possible Reasons:</b><br />The user did not enter anything into the fields provided and you do not have some sort of validation setup such as <a href"http://docs.jquery.com/Plugins/Validation">jQuery</a> for those fields<br />';
		echo 'Check that the name tags in your form match what is being checked for in the process.php file.';
	}
	exit();
}
?>
  • Share/Bookmark

Useful PHP & jQuery Components

1 – Directory Trees With PHP And jQuery

A easy way to keep track of many files is to use a directory tree. A directory tree lists out files and directories so that it’s easy to find what you’re looking for. In this tutorial, you will be taught how to make a directory tree using PHP and jQuery.

Directory Trees With PHP And jQuery


2 – Create a Photo Admin Site Using PHP and jQuery

A sciences tutorial for creating a photo site using PHP, jQuery, and AJAX. You will be taught how to repossess images from a database, create a straightforward login form with substantiation, and then allow for the database to be asynchronously updated.

Create a Photo Admin Site Using PHP and jQuery

3 – Asynchronous Comments with PHP, jQuery, and JSON

In this article, be taught how to create a uncomplicated but effectual means of capturing and displaying visitor explanation using a merge of jQuery, PHP and JSON. In the public forum that is the blogosphere, the aptitude to incarcerate and display visitor comments on your blogs can give you immediate feedback and opinions from the people that substance most – those that read your blog.

 Asynchronous Comments with PHP, jQuery, and JSON

View Demo

4 – PHP AJAX Login Form using jQuery

Create a new PHP ajax login functionality by Jquery. You can easily switch the data basis flanked by database and PHP array, login substantiation can be using username or email, or even both of ‘em by changing the config, automatic redirection could be done within the javascript config.

PHP ajax login form using Jquery

View Demo

5 – PHP + jQuery Todo List

This is part 1 of a 2 part succession on making a To-do List with PHP and ornament it with jQuery’s AJAX and handling capabilities.

PHP + jQuery Todo List

View Demo

6 – Newsletter module

A PHP, jQuery and AJAX module, which should be great for any newsletter management needs. You just need to copy one file onto your site, and you’re prepared to send and archive all newsletters, supervise e-mail addresses and categories, and configure a template for your e-mails. Also have an aptitude of optional password protection. All options can be easily configured at the top of incorporated .php file.

Newsletter module

View Demo

7 – From PHP to XML to jQuery and Ajax

This tutorial will focus on receiving data from a database by PHP, converting that to an XML document, and reading that XML in through jQuery via Ajax calls. Seems multifaceted, but is in fact, very easy.

From PHP to XML to jQuery and Ajax

View Demo

8 – How to Validate Forms in both sides using PHP and jQuery

We are going to learn how to validate your forms using PHP and jQuery in both sides: client side (using javascript with jQuery) and server side (using PHP). It will be interesting to see how to use regular expressions to validate different kind of e-mails, passwords and more.

How to Validate Forms in both sides using PHP and jQuery

View Demo

9 – Create a shoutbox using PHP and AJAX

We will learn how to create a dynamic ajax based shoutbox with jQuery from scratch. It will be very interesting to know how to use the ajax function of jQuery and how it can be used to insert and recover data from a MySQL database via PHP in a way asynchronous.

Create a shoutbox using PHP and AJAX

View Demo

10 – PHP and jQuery upload progress bar

With the controllable jQuery Progress Bar, writing a form upload advancement bar seems like a piece of cake now. Theoretically, all we need is to create the bar, poll for the progress of the file upload, drive the new progress bar value (in percentage) and set it using PHP.

PHP and jQuery upload progress bar

View Demo

11 – Auto-Complete Field with jQuery, JSON & PHP

Using jQuery with PHP to create auto complete field, beside the auto-complete code we need the jQuery library along with its Dimensions plug-in.

Auto-Complete Field with jQuery, JSON & PHP

12 – A fancy Apple.com-style search suggestion

Learn how to recreate the effect from Apple website by creating a fancy apple.com-style search suggestion. This example makes use of several techniques: MySQL (for the database), HTML/CSS for styling, PHP for retrieving the data and jQuery for the AJAX request.

A fancy Apple.com-style search suggestion

View Demo

13 – PHP & jQuery image upload and Crop

Create a PHP and jQuery image upload and crop tool using PHP, jQuery, PHP GD Library.

PHP & jQuery image upload and Crop

View Demo

14 – FlickrScrollr

FlickrScrollr is a combination of PHP and jQuery that parses a Flickr RSS feed and creates an animated thumbnail display.

FlickrScrollr

View Demo

15 – Reddit-style Voting With PHP, MySQL And jQuery

If you are a regular at Reddit, you must have noticed the way people vote there. You can either vote up or vote down. This tutorial will show you how to create such a voting system with jQuery, PHP and MySQL.

Reddit-style Voting With PHP, MySQL And jQuery

View Demo

16 – SMTP Feedback Mail class with jQuery Slide Effect

This post is about feedback mail with nice slide effect using php SMTP class and jQuery. It’s very useful to add contact/feedback page to your php websites.

SMTP Feedback Mail class with jQuery Slide Effect

  • Share/Bookmark

Tooltips Scripts With AJAX, JavaScript & CSS

1 – Nice Titles Revised

An improved Nice Titles Tooltip Script with Accesskeys support.

Nice Titles Revised

A lightweight prototype based JavaScript tooltip

Nice Titles Revised

2 – Nice Titles

A classic. The script uses a background image.

Nice Titles

3 – AJAX enabled Help Balloons

Help windows in baloon-design. AJAXified version is also available.

AJAX Enabled Help Balloons

4 – jTip – A jQuery Tool Tip

Extensive AJAX-based tooltips with numerous functions and presentation possibilities.

jTip – A jQuery Tool Tip

5 – jQuery plugin: Tooltip

Enhances the jQuery Library.

jQuery plugin: Tooltip

6 – qTip

Works for all elements, not only for links in most browsers – IE 5.5+, Firefox, Safari and Opera.

qTip

7 – Form field hints with CSS Tooltips

It’s a basic example of how helpful a little JavaScript and CSS can be in a form. Instead of the input hints always showing and potentionally cluttering a very simple form, only the hint for the currently focused input will show. This article will show a way to do this.

Form field hints with CSS Tooltips

8 – JS Tooltip

Displays customizable tool tip message for each link element on a web page. A tool tip that can be added to the anchor element unobtrusively by adding a class value to it. This was done by having the tool tip message pull from the specific title attribute of the anchor element that the tool tip was added too.

JS Tooltip

9 – BoxOver

Flexible DHTML-Tooltipp in numerous formats. Appears (almost) immedately and fades in during loading.

BoxOver

10 – SuperNotes

Converts footnotes to tooltips. Appears immediately and can be assigned with a fixed position in the browser window.

SuperNotes

11 – Tipster

Multifunctional tool tips with JavaScript.

Tipster

12 – 5 Tooltips by DHTMLGoodies

First version is suppose to improve the usability of online forms.

5 Tooltips by DHTMLGoodies

The second technique uses AJAX.

5 Tooltips by DHTMLGoodies

13 – Walter Zorns JavaScript, DHTML Tooltips

These tooltips can be used for different purposes; the code is well-documented and can easily be improved and modified.

Walter Zorns JavaScript, DHTML Tooltips

14 – clueTip

A jQuery-based, AJAX-powered tooltip. The clueTip plug-in was inspired by Cody Lindley’s jTip script.

clueTip

15 – Mootools Tooltip

Mootools Javascript example of using tooltips.

Mootools Tooltip

16 – Sweet Titles

JavaScript Fading Tooltips.

Sweet Titles

17 – Hover Tip

Tooltip with menu-like capabilities. The tooltip layer will remain visible while the viewer hovers over it. This allows you to place clickable links inside tooltip content.

Hover Tip

18 – Multiline Tooltip with HTML, CSS and JavaScript

This document explains how to make nice multiline tooltip for HTML documents, using simple and standard CSS, HTML and JavaScript.

Multiline Tooltip with HTML, CSS and JavaScript

19 – overLIB

This JavaScript-library can be used in a variety of ways; many positioning and appearance features are available.

overLIB

20 – Scriptaculous Effect.Tooltip

The tooltip script from the script.aculo.us library.

Scriptaculous Effect.Tooltip

CSS Only ToolTips

21 – CSS Tooltips

A simple demonstration of using custom CSS tooltips as a drop-in replacement for the browser-based title attribute.

CSS Tooltips

22 – CSS Technique for Tooltips

CSS can create “faux tooltips” much the same as the JavaScript ones, but without all the (possibly) undesirable scripting. There are a few in’s and out’s involved, but surprisingly, the methods are rather easy to accomplish.

CSS Technique for Tooltips

23 – Unobtrusive and Slightly Accessible CSS Tool Tips on Semi Transparent CSS Menus

The scripts creates half-transparent tooltips with shadows.

Unobtrusive and Slightly Accessible CSS Tool Tips on Semi Transparent CSS Menus

24 – CSS Menu Descriptions

This is a CSS technique that could be useful if you want to give users accessible added content such as tool-tips, notifications, or alerts, without adding unnecessary clutter to your page. And since it doesn’t rely of JavaScript, it should be useful to everyone, even disabled users.

CSS Menu Descriptions

25 – Balloon Tooltip Demonstration

The balloon.js package is written in object-oriented JavaScript and allows you to add configurable balloon tooltips (AKA popup balloons, bubbles, rollover tooltips etc., etc.) to your website. It was written for scientific web applications, such as GBrowse and WormBase, but is generic and portable to most websites.

Balloon Tooltip Demonstration

26 – lixlpixel CSS Tooltips

lixlpixel CSS tooltips

27 – lixlpixel Javascript Tooltips

lixlpixel Javascript tooltips

28 – CSS Rollovers for Tooltips

CSS Rollovers for Tooltips

29 – CSS Bubble Tooltips

Avoid cross-browser javascript when you can use css to make tooltips with less code.

CSS Bubble Tooltips


30 – Pure CSS Tooltips

Pure CSS Tooltips


31 – CSS Tooltips

Another solution, based only on CSS.

CSS Tooltips

32 – Information Balloon PopUps

Stu Nicholls delivers another CSS-based solutions.

Information Balloon PopUps

  • Share/Bookmark