- Scriptaculous Combination Effects
- What's Ajax
- Form Helpers
- CSS
- xHTML
- SEO
- JavaScript
- Firefox
- mod_reqrite
- PHP
- Ruby on Rails
- Python
- MySQL
- Prototype.js
- jQuery
- Regular Expression
- Adobe Photoshope CS3 Keyboard Short cuts
- Photoshop Toolbox Reference
- Photoshop Lasso Tool
- Photoshop Brush Tool
- RGB Hex Color Chart
- Color Reference Guide
- Web Designer Color Reference Hexagon Mouse Pad
- Web Safe Color Chart
- Hexa Decimal Color Chart
- Typography
- Common fonts to all versions of Windows & Mac equivalents
- Mixing Typefaces
- Approximate Conversion from Points to Pixels
- Megapixels Chart
- Blueprint CSS
- Yahoo Library: CSS Reset,Base,Fonts, and Grids
- CSS Short Hand
- HTML & xHTML Tag Reference
- HTML/xHTML Character Entities
- Dreamweaver CS3 Quick Reference
- Will the browser aplly the rule(s)
- Subversion
- SQL Server
- Microformats
- Ruby on Rails
- ASP/VB Script
- MySQL
A repository of my thoughts, a blog, a source to get insight, know-hows, my views on Software Development and everything else in between......
Showing posts with label Design. Show all posts
Showing posts with label Design. Show all posts
Friday, March 06, 2009
Biggest List of Cheet Sheets, Reference Guides to help you
Thursday, August 28, 2008
Wednesday, June 04, 2008
CSS Hacks: DIV Height Problem and Solution
If you set height in css for a div and check it in IE and Firefox you will get two different heights.
Empty divs in IE have a minimum height, more or less equal to the current line-height.
The way to solve this is:
1) Put a comment inside the div: <div style="height: 10px;"><!-- --></div>
2) Put a inside the div and add this to its style: font-size:1px; line-height:0.
Empty divs in IE have a minimum height, more or less equal to the current line-height.
The way to solve this is:
1) Put a comment inside the div: <div style="height: 10px;"><!-- --></div>
2) Put a inside the div and add this to its style: font-size:1px; line-height:0.
Tuesday, April 17, 2007
Adding Click to Select All Text: Javascript
If you want your users to click on a text area and automatically highlight all of the text, there is a very simple way to do it. This does not require external javascript at all. It’s no "copy code" button, but if the user clicks inside the text area, this bitt of code will hightlight all of the text in that textfield.
Add the following code to any <> tag:
onclick="javascript:select();"
Example:
Subscribe to:
Posts (Atom)