article

Friday, April 9, 2010

Fun with forms- Customized Input Elements

Fun with forms- Customized Input Elements

If you want to know more and download the source follow the link below


http://www.picment.com/articles/css/funwithforms/

CSS-Only, Table-less Forms

CSS-Only, Table-less Forms

If you want to know more and download the source follow the link below


http://jeffhowden.com/code/css/forms/

Using CSS to Create a Two-Column Layout

Using CSS to Create a Two-Column Layout

If you want to know more and download the source follow the link below

http://www.websiteoptimization.com/speed/tweak/forms/

A Prettier Accessible Forms

A Prettier Accessible Forms

If you want to know more and download the source follow the link below


http://www.alistapart.com/articles/prettyaccessibleforms

Fancy Form Design Using CSS

Fancy Form Design Using CSS

If you want to know more and download the source follow the link below


http://articles.sitepoint.com/article/fancy-form-design-css

Thursday, April 8, 2010

Clean and pure CSS FORM design

Clean and pure CSS FORM design

If you want to know more and download the source follow the link below

http://woork.blogspot.com/2008/06/clean-and-pure-css-form-design.html

How to add custom Seach google.com

How to add custom Seach google.com

1. Custom search URL http://www.google.com/cse/

2. start create a custom search engine









3. Fill Basic information fields
4. Select Search engines I've created
5. Select Control panel
6. Get Code














7. Sample

WAMP Server - Windows-based web server

WAMP Server - Windows-based web server

WampServer is an open source WAMP (Windows Apache MySQL and PHP) web server, free to use with a GPL license. must-have web development suite for web developers running any Windows Operating System.

If you want to know more and download the source follow the link below




http://www.wampserver.com/en/

XAMPP web server

XAMPP web server

XAMPP is a free and open source cross-platform web server package, consisting mainly of the Apache HTTP Server, MySQL database, and interpreters for scripts written in the PHP and Perl programming languages. XAMPP is also for localhost development and testing

If you want to know more and download the source follow the link below

http://www.apachefriends.org/en/xampp.html

Aptana Studio Editor for web developer FREE

Aptana Studio Editor for web developer FREE

Aptana Studio support AJAX, HTML, CSS, and JavaScript, which has made it a popular choice for web developers. Top features include excellent file transfer (FTP) capabilities over both SSH (SFTP) SSL (FTPS); code step-through and DOM inspection for JavaScript debugging; and Studio integrates with the Eclipse IDE.

If you want to know more and download, follow the link below

http://www.aptana.org/studio

Notepad++ Editor for web developer FREE

Notepad++ Editor for web developer FREE

Notepad++ is a powerful; multiple-language supporting; code editor that should be on every web developer's desktop.

If you want to know more and download, follow the link below

http://notepad-plus.sourceforge.net/uk/site.htm

Facebook like Autosuggestion with jQuery, Ajax and PHP

Facebook like Autosuggestion with jQuery, Ajax and PHP







Facebook like Auto suggestion







Facebook like Auto suggestion














Search.php

$mysql_hostname = "localhost";
$mysql_user = "root";
$mysql_password = "ednalan";
$mysql_database = "insurance_site";
$bd = mysql_connect($mysql_hostname, $mysql_user, $mysql_password) or die("Could not connect database");
mysql_select_db($mysql_database, $bd) or die("Could not select database");

if($_POST)
{
$search=$_POST['searchword'];
$sql_res=mysql_query("select * from rme_insurance_agent where profile like '%$search%' or name like '%$search%' order by id LIMIT 10");
while($row=mysql_fetch_array($sql_res))
{
$name=$row['name'];
$img=$row['photo'];
$country=$row['country'];
?>






}
}
?>



Download

http://dl.dropbox.com/u/3293191/Facebook%20like%20Autosuggestion%20with%20jQuery%2C%20Ajax%20and%20PHP.zip

Wednesday, April 7, 2010

Quick Search

Quick Search

If you want to know more and download the source follow the link below

http://github.com/riklomas/quicksearch

Demo

http://github.com/riklomas/quicksearch

Password Indicator

Password Indicator

If you want to know more and download the source follow the link below

http://projects.sharkmediallc.com/pass/

Make An Elastic Thumbnail Menu

Make An Elastic Thumbnail Menu

Insert and Load Record using jQuery and Ajax

Insert and Load Record using jQuery and Ajax























What are you doing?
















insert.php

{
$content=$_POST['content'];
}
?>





Flash Message with jQuery Like Twitter

Flash Message with jQuery Like Twitter





{
$message=$_POST['entertext'];
$message_fade="
$message!
";
}

?>



Flash Message Display
















Jquery Basics 2

Jquery Basics 2

jQuery Stucture
$ = jquery, selector is a DOM element and function execute a jquery fuction.
$(selector).function(parameters);

DOM - Document Object Model Wiki

Selectors

-> Select DOM elements eg: $('h1') ,$('div'), $('li')..
-> Select ID : $('#id_name')
-> Select Class : $('.class_name')
$("#header") = get the element with id="header"
$("h3") = get all


1. jQuery Animate div and image




jQuery Animate Image





jQuery Animate Div



My Div Animate div and image






2. Fade div - Selecting Page Elements by ID




So as this.












This works on blogger






This works on blogger





Test

Twitter Like More Button with jQuery and Ajax

Twitter Like More Button with jQuery and Ajax

Download

http://dl.dropbox.com/u/3293191/Twitter%20Like%20More%20Buttonmore_project.zip

Tuesday, April 6, 2010

Alert Confirm Box with jQuery and CSS - Facebook Style

Alert Confirm Box with jQuery and CSS - Facebook Style

Download source file

http://dl.dropbox.com/u/3293191/facebook_alert.zip

Related Post