What is Google Resizer?

What is Google Resizer?

Google has launched a new service named Resizer. Google resizer is basically an interactive viewer which helps you to view your website in various design breakpoints across devices like Desktop, Mobile and Tablet. This service would help you test your website under some pre-defined breakpoints that Google has come up with across various devices. As … Read more

How to use Font Awesome Icons?

HTML5 MoreOnFew

What is Font Awesome? Font Awesome is basically an Icon-Font Kit. It is a font that renders icons and is somewhat similar (though not exactly) to the windings in windows. It gives you scalable vector icons that you can customize as per your choice like changing the color, size, drop shadow and other CSS3 effects etc. Why … Read more

Unsemantic CSS framework tutorial and Guide

unsemantic css

What is Unsemantic? Unsemantic is a CSS framework that is responsive and based on fluid grid system that uses percentages instead of fixed pixels.  Like any other CSS framework, Unsemantic too has pre-prepared CSS classes that would make web page development easier. Unsemantic is popularly knows to be the successor of the famous 960Grid CSS framework. … Read more

How to join or merge an Array in JavaScript?

Javascript on MoreOnFew.com

I’m sure you must have had a scenario where you had to join or merge two different Arrays. Well, let me tell you that its an easy task. However, there are different ways this can be done. Merging multiple arrays using Array.concat() method. JavaScript has a native method Array.concat() which does it. Let’s take a look … Read more

How to search for a string in JavaScript?

Javascript on MoreOnFew.com

The String data type must be the most common data type that we use in JavaScript. One of the most common functionality around string that we would have come across is to search for a string/character/word within another string. You can easily search for a word in javaScript using the string.search() method of JavaScript. The … Read more

How to use Crossroads.js? A tutorial with examples

Javascript on MoreOnFew.com

Are you making a Single Page Application  or an SPA ? And Do you want to update the URL of the page without reloading the page? Do you want your page to respond to the change in the URL without reloading the page? In Short, if you are looking for a javascript routing library then … Read more

How to check jQuery version?

jQuery Banner

Many of us might have come across scenarios wherein we wanted to do something based on the version of the jQuery loaded. To be specific I’m talking about scenarios where one might want to know the version of jQuery programmatically and if the version was say 1.3.2 then load some other files too or do something … Read more