I am UI Designer, Slightly Workaholic, Dreamer, Sleeps during day, Movie addict... sharing what i know.........
- Abdul Wahid ... color2life
Author Archive

INefficient CSS

some prerequisite Avoid CSS expressions IE5- IE7 Support CSS expression but now in IE8 deprecated the css expression. The style system matches a rule by starting with the rightmost selector and moving to the left through the rule’s selectors. As long as your little sub-tree continues to check out, the style system will continue moving...

How to use prototip with prototype by nickstakenburg

nickstakenburg.com prototip Option 1 onMouseOver= "simple_tip(this, 'Credit...');" function simple_tip(element,tip) { new Tip(element, tip, {width: ‘auto’,border: 1,radius: 1,offset: { x: 10, y: 15 }}); } Option 2 document.observe('dom:loaded', function() { $$('a[rel]').each(function(element) { new Tip(element, element.rel,{ width: 'auto', border: 1, radius: 1, offset: { x: 10, y: 15 } //hook: {target:'topleft', tip: 'bottomright'} }); }); }); Option...