Erki

More Articles

Control Naming Conventions for ASP.NET VB C#

These control naming conventions may help provide some organization. Visual Studio sets Name properties to defaults for controls, like Label2. Using these conventions it would be something like lblName. ASP.NET Control Naming Conventions ASP.NET Control Naming Conventions are prefixed to...

Responsive jQuery Vertical Menu

The vertical menu knows how far to animate by getting the width of the div it’s located within. View Demo The snippet of code below is the html for our vertical menu. Take note of the span...

Images in HTML Emails: Images Still Separate in Gmail?

Have you ever made an HTML email with images in it and it looked good in most email clients, but not gmail or possibly hotmail? You’ve made sure to build your HTML email using tables instead of divs, used colspans, specified heights and widths....

CSS Sticky Footer – Sticks Whether You’ve Scrolled or Not

There are several tutorials on how to make a CSS sticky footers sticky header, or sticky sidebar.  This is one. Remember to compensate at the bottom of your page so the CSS sticky footer doesn’t cover any content....

Doctype Reference – HTML and XHTML

Here are the doctype declarations for you. Short and sweet HTML Doctypes: HTML 5 Doctype <!DOCTYPE html> HTML 4.01 Strict Doctype <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> XHTML Doctypes: XHTML 1.1 Doctype <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> XHTML 1.0 Transitional Doctype <!DOCTYPE html PUBLIC...

CSS Generators – My Favorites – CSS3 Tools and Gradient Generator

There are several CSS generators out there. Many do the same things. Soo… To keep you from sorting through several different generators, here are my favorites to save some time.  Some browsers have different quirks,...

jQuery UI Accordion Tutorial: How to Make a Basic jQuery UI Accordion

This post is for beginners.  It shows how to make a basic jquery UI accordion. We will use a predefined jquery ui for the accordion. There is a link to the demo right before the entire code snippet. HTML...

SEO Safe CSS Hiding: CSS Snippet

As far as I know, this is better for SEO when hiding an element with CSS. I believe it is better than display: none; and/or visibility: hidden; #thingamabob { position: absolute; ...

Protocol Relative URL – Network-Path Reference or Scheme-Relative URL

Here we examine why you would use a protocol relative URL.  Have you ever had this error in ie - “This page contains both secure and nonsecure items?” A protocol relative URL may also be called...

Discover

Trending

CSS Generators – My Favorites – CSS3 Tools and Gradient Generator

There are several CSS generators out there. Many do the same things. Soo… To keep you from sorting through several different generators, here are...

Javascript Window Location Object Methods

Two of the three javascript window location object methods seem to do the same thing.  They do not. The window location methods are assign(), reload(), and replace(). The reload() method...

jQuery Window Width – Determine Browser Window Size, Responsive Design

jquery window width, you’ll need it if you’re working with Responsive Design and/or need to figure out the width of the browser Window? Are you using a responsive...

Javascript Browser Detection – Navigator User Agent Sniffing Guide

Javascript browser detection can be useful. This is called user agent sniffing.  jQuery had the function “.browser” which would detect the users browser, but...

CSS Center – CSS Centering of an Element: Tutorial

CSS Center - This short tutorial and snippet will show how to center with CSS CSS Center HTML <body> <div class="centerMe"> <!-- Put centered content...