In this tutorial we will create a viewport resizer. So that without resizing your browser window you can check responsiveness of your websites. Viewport comes very handy when you are creating a responsive site. You don’t have to test your website on different devices and also dont’t have resize browser window. View Demo What is […]
In this post we will look a Javascript events in depth. You will learn what are events, what are different types of events, how events work, how to customize default actions, creating custom events, method of registering events and much more. Having a good understanding on Javascript events will help to develop better websites. What […]
In this post we will create a indicator displaying the percentage of website loaded. This indicators are used in websites with large web page size to display the progress of webpage. Youtube too display a indicator on top. I was inspired to write this post after looking at a awesome javascript library pace.js which does […]
In this post we will see the different ways to redirect URL’s and how those techniques will effect our website’s search engine ranking. We will also have a look at the different ways of handling duplicate content in our websites and how search engines handle duplicate content if we don’t specify anything. Having a good […]
In this post we will look at some popular Javascript libraries available for syntax highlighting. Syntax highlighting is very important if want to show code in your webpage. Syntax highlighting and formatting is makes your code more readable. Syntax highlighting is mostly used by programming tutorial websites to display code. In this post first we […]
In this post we will look at building a Facebook login system without using Facebook SDK. This mechanism can be followed by any website to integrate Facebook login into it. In this post we will be using a very high level abstraction to build a completely working and secure Facebook login system which will work […]
The use of tabbed area is very frequent now a days. Few websites have their complete layout based on tabbed area concept. In this post we will look at two different ways of creating tabbed area using HTML and CSS only. One of the method will require little bit of Javascript for better user experience […]
WordPress generates HTML markup for menu items and we only have the freedom to style the markup using CSS. Its fine if you are a good web designer and can style the generated markup. But what if you are integrating frameworks like Bootstrap or Foundation Or have a different markup in mind for styling. WordPress […]
According to W3C <img> is a inline element. But it doesn’t follow all designing rules of inline elements. You cannot set height and width of inline elements but you can set height and width of <img>. <img> element’s design depends on aspect ratio, parent block container, dimensions, height and width. <img> is inline or block […]
Most Commented