Coding

Enjoying our content?

Subscribe and receive a weekly newsletter packed with awesome stories to inspire you!

How to Remove Dotted Line Around Link? Remove Mozilla Firefox Border

Ever noticed that FireFox applies a border/outline around links. This CSS snippet will remove dotted line around link. If this is what you are trying to accomplish, try using the below css snippet: remove dotted line around...

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 does what you think. Both assign() and replace() appear to simply...

PHP Ispostback Equivalent Function – Code Snippet

There is a function called ispostback in asp.net. However there isn’t one in PHP. You use do it to check if a page is a postback. The snippet of code below will create a PHP...

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....