How to Load In and Animate Content with jQuery

http://net.tutsplus.com/tutorials/javascript-ajax/how-to-load-in-and-animate-content-with-jquery/ Author: James Padolsey I’m a freelance web developer based in Hampton, UK. I write about and enjoy front-end web development. Most of what I write focuses on my favorite topic, JavaScript! To read my blog or find out more about me please visit my site!

Clean Word HTML using Regular Expressions

function cleanHTML($html) { /// /// Removes all FONT and SPAN tags, and all Class and Style attributes. /// Designed to get rid of non-standard Microsoft Word HTML tags. /// // start by completely removing all unwanted tags $html = ereg_replace(“<(/)?(font|span|del|ins)[^>]*>”,””,$html); // then run another pass over the html (twice), removing unwanted attributes $html = ereg_replace(“<([^>]*)(class|lang|style|size|face)=(\”[^\”]*\”|'[^’]*’|[^>]+)([^>]*)>”,”<\\1>”,$html); …

SEO meta tags

What Does This Meta Tag Look Like? This meta tag is usually placed beneath the title and meta description tags in the <HEAD></HEAD> section of your pages’ HTML code, like this:<HEAD> <TITLE>your DESCRIPTIVE KEYWORDS title goes here</TITLE> <META NAME=”DESCRIPTION” CONTENT=”Your keyword rich marketing sales-pitch meta description goes here”> <META NAME=”KEYWORDS” CONTENT=”your keywords,go here,separated by a …