jQuery
Elastislide is a responsive image carousel that will adapt fluidly in a layout. It is a jQuery plugin that can be laid out horizontally or vertically with a pre-defined minimum number of sho... Read more
Are you looking for Facebook UI features, this post will explain you how to create a Facebook style notifications popup using Jquery, HTML and CSS, you will understand how CSS elements will... Read more
The jQuery library makes it easy to manipulate a page of HTML after it’s displayed by the browser. It also provides tools that help you listen for a user to interact with your page, to... Read more
Steps to develop the program Step 1: Create a new file (simple_carousel.html) and add the following code into <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3... Read more
STEP 1 – Markup The slider html markup is very simple. We’ll create a <div> with the class “flex-container”, then inside of this <div> we will add another one with the class “fle... Read more
HTML5 added some new features for input and textarea fields. One is inspired by Safari’s search box: placeholder This adds an default text if the textfield is empty: <input type="text" pl... Read more
It’s very simple and basic tutorial for beginners. Create User Table CREATE TABLE `users` ( `uid` INT(11) NOT NULL AUTO_INCREMENT , `username` VARCHAR(45) , `password` VARCHAR(100) , `email`... Read more
jQuery: The Basics This is a basic tutorial, designed to help you get started using jQuery. If you don’t have a test page setup yet, start by creating the following HTML page: 1 2 3 4... Read more
Here is a quick tip how to check visibility state of a toggled element in jQuery: $('#element').toggle('slow', function() { if($(this).is(':hidden')) { $(this).text('This element is hidden.'... Read more
Look at examples below: Init filter: $(document).ready(function() { $('ul.dynamic-search-list').filterList({ inputSelector: '#filter-input' }); }); inputSelector is the only option required... Read more