jQuery 1 snippet: <script src=”https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js”></script> 2 snippet: <script src=”https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js”></script> site: jquery.com versions: 2.1.4, 2.1.3, 2.1.1, 2.1.0, 2.0.3, 2.0.2, 2.0.1, 2.0.0, 1.11.3, 1.11.2, 1.11.1, 1.11.0, 1.10.2, 1.10.1, 1.10.0, 1.9.1, 1.9.0, 1.8.3, 1.8.2, 1.8.1, 1.8.0, 1.7.2, 1.7.1, 1.7.0, 1.6.4, 1.6.3, 1.6.2, 1.6.1, 1.6.0, 1.5.2, 1.5.1, 1.5.0, 1.4.4, 1.4.3, 1.4.2, 1.4.1, 1.4.0, 1.3.2, 1.3.1, 1.3.0, 1.2.6, 1.2.3 note: […]
Articles Tagged: 2015
50 Free Resources for Web Designers from 2014
Free JavaScript Plugins & Tools lightSlider is a lightweight and responsive content slider jQuery plugin with carousel thumbnails navigation. BttrLazyLoading is a jQuery plugin that allows your web app or page to only load images within the viewport. Gridscrolling.js is a jQuery plugin that lays outs an HTML5 article for you by positioning sections and […]
Cheat Sheets
Web Languages CSS – Cascading Style Sheets CSS Cheatsheet via OverAPI.com Web View CSS Vocabulary Web View Media Queries Cheat Sheet Web View Responsive Web Design Cheatsheet PDF View fontfamily.io – Check Compatabilty of Default Local Fonts Web View Popular CSS Frameworks Master Cheatsheet for Bootstrap 3 PDF View Complete Font Awesome Icon Reference Cheatsheet […]
CSS Web-Based Apps
extractCSS is a tool for extracting ids, classes and inline styles from an HTML document and then outputting them as a CSS stylesheet. CSS Beautifier will automatically format your CSS styles so that they are consistent and easier to read. CSScomb is a coding style formatter that will sort CSS properties into a specific pre-configured […]
.htaccess Snippets
Table of Contents Rewrite and Redirection Force www Force www in a Generic Way Force non-www Force non-www in a Generic Way Force HTTPS Force HTTPS Behind a Proxy Force Trailing Slash Remove Trailing Slash Remove Trailing Slash from Arbitrary Paths Redirect a Single Page Alias a Single Directory Alias Paths to Script Redirect an […]
Tools
CSS Stats – web-based app that visualizes various stats about your CSS files. purifycss – detects which CSS selectors your app is using and creates a file without unnecessary CSS Email Lab – open-source starter kit for HTML emails that uses Grunt Google Fonts Simple – open-source project to tag, organize and make it easier […]
Custom CSS login page
Custom CSS for the login page and create wp-login.css in your theme folder function wpfme_loginCSS() { echo ‘<link rel=”stylesheet” type=”text/css” href=”‘.get_bloginfo(‘template_directory’).’/wp-login.css”/>’;; } add_action(‘login_head’, ‘wpfme_loginCSS’);
Call Google HTML5 Shim
Only for users on old versions of IE function wpfme_IEhtml5_shim () { global $is_IE; if ($is_IE) echo ”; } add_action(‘wp_head’, ‘wpfme_IEhtml5_shim’);
Format Commas in Numbers
This function assumes what is being submitted to it is a string, with a decimal point and two places after the decimal. To get your number into that format first, use this. Then this function will properly comma separate the number. For example, 2345643.00 will return 2,345,643.00 function CommaFormatted(amount) { var delimiter = “,”; // […]
keyCodes
Key Code backspace 8 tab 9 enter 13 shift 16 ctrl 17 alt 18 pause/break 19 caps lock 20 escape 27 page up 33 page down 34 end 35 home 36 left arrow 37 up arrow 38 right arrow 39 down arrow 40 insert 45 delete 46 0 48 1 49 2 50 3 51 […]