» tagged pages
» logout

sorted by: recent | see : popular
Content Tagged with debugging + css

Neuer Schwung für Firebug - Golem.de

Firebug Working Group soll Zukunft der Firefox-Erweiterung gestalten Die Firefox-Erweiterung Firebug ist für viele Web-Designer und<sep/>

Firefox: del.icio.us/tag/firefox

Html Validator for Firefox and Mozilla

The HTML Validator extensin for Firefox has been updated for Firefox 3 on Intel Macs

Firefox: del.icio.us/tag/firefox

SitePen Blog " Firebug Lite and Dojo: Not Just for IE

Recently improvements have landed in Dojo Toolkit version of Firebug Lite. These improvements have taken it beyond the desperate need for logging in Internet Explorer to a very viable alternative.

Dojo: del.icio.us tag dojo

IETester

test in multiple versions of IE

Firefox: del.icio.us/tag/firefox

Web Development Bookmarklets

<sep/>contained as bookmarklets. Some of these do what FireBug or some of the standard sidebar tools in FireFox do, but could be useful in other browsers.

Firefox: del.icio.us/tag/firefox

Web Developer Firefox plugin

FF plugin that gives you quick access to the features you need to turn on and off during web development. This is a must have!

Firefox: del.icio.us/tag/firefox

Browser CSS float error detection with jQuery

Mario Heiderich of Ormigo has created a jQuery based code snippet/bookmarklet that is capable of detecting floating errors and adding a dotted orange border to elements which should be cleared - but aren't.


It saved me a huge bunch of time debugging complex layouts for all browsers - especially IE6. If jQuery isn't already loaded on the page it can easily be fetched with the several jQuerify approaches.

Snippet

JAVASCRIPT:
  1.  
  2. (function(){
  3.     function checkNext(element, floating) {
  4.             if(element.css('clear') != 'none') {
  5.                 var clearing = true;
  6.             } else {
  7.                 if(element.next().length !== 0) {
  8.                     var clearing = false;           
  9.                     checkNext(element.next(), floating);
  10.                 } else {
  11.                     console.log(element);
  12.                     element.css({border:'2px dotted orange;'})
  13.                 }
  14.             }
  15.     }
  16.     $('body *').each(function(){
  17.         var element = $(this);
  18.         if(element.css('float') !== 'none' && element.next().length !== 0) {
  19.             checkNext(element.next(), element.css('float'));
  20.         }
  21.         eval('');
  22.     });
  23. })();
  24.  

Bookmarklet

JAVASCRIPT:
  1.  
  2. javascript:eval(function(p,a,c,k,e,r){e=function(c){return c.toString(a)};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('(3(){3 5(a,b){4(a.2(\'p\')!=\'9\'){6 c=h}d{4(a.1().7!==0){6 c=o;5(a.1(),b)}d{n.m(a);a.2({l:\'j i k;\'})}}}$(\'g *\').f(3(){6 a=$(e);4(a.2(\'8\')!==\'9\'&&a.1().7!==0){5(a.1(),a.2(\'8\'))}q(\'\')})})();',27,27,'|next|css|function|if|checkNext|var|length|float|none||||else|this|each|body|true|dotted|2px|orange|border|log|console|false|clear|eval'.split('|'),0,{}))
  3.  

Ajax: Ajaxian

Sub-Pixel Problems in CSS

John Resig looks at how browsers deal with percentage values specified in CSS.

Firefox: del.icio.us/tag/firefox

Page 1 | Next >>