Archive for July, 2012

Load CSS files using jQuery

Today I got into a situation where I need to load CSS file dynamically using jQuery. My code was working in all the browsers except IE. But after spending couple of minute I was able to make proper cross browser solution. Here is a piece of code that will load CSS using jQuery. $(document).ready(function(){ $("head").append("<link>"); […]
Read the rest of this entry »

Show jQuery DatePicker on button click

The default behavior of jQuery UI Datepicker control is to show Datepicker on click to the element to which it is bind. But sometimes it is required to open the datepicker control on click of button. So In this post, I will demonstrate how to show jQuery DatePicker on button click. To achieve this, one […]
Read the rest of this entry »

Get JSON with jQuery using Ajax

JSON (JavaScript Object Notation) is an data exchange format and which is human-readable data. JSON has became very popular since that web pages have became interactive using AJAX. JSON format is easy to create from the server and easy to parse at client. In this post I will show you how to get JSON file […]
Read the rest of this entry »

5 jQuery Plugin to show Password Strength

These days having a strong password is must have requirement. You can make your own algorithm to define what a strong password means to you. But it is nice to give a visual indication to the user about entered password strength. Here is a list of top 5 jQuery plugin that show password strength to […]
Read the rest of this entry »

jQuery Replace Strings

Below is simple jQuery code snippets to replace all the dots (.) present on HTML page and then replace it with hyphen. Earlier I had posted about jQuery solution to substring, split string, trim string and about all string functions, And In this post, see jQuery/JavaScript replace function in action with example. $(document).ready(function() { var […]
Read the rest of this entry »

5 Responsive Image Sliders with Responsive Fluid Layout

jQuery Speedo Slider Plugin Speedo Slider is an advanced content slider and it has full compatibility for HTML5 and CSS3 and full fallback for older browsers. Using Speedo Slider you can create complex sliders in a simple way. Speedo Slider is built using the latest technologies to be SEO friendly and it aims to be […]
Read the rest of this entry »

Responsive Menu
Add more content here...