I'm doing alot of page design right now and this little function that lets you reload all your css files without having to load the whole page.
Found this neat snippet here but his code is broken because the brower substitutes the 'idea' ligh bulb for [i] in the loop. So I am reposting the code.
Just create a bookmark and in 'location' plug this javascript. I have this in my toolbar so I can quickly view my changes in css realtime.
Copy and paste...this formats funny in the blog but I didn't want to introduce any /r/n's so you can just paste into the Firefox dialog box.
javascript:void(function(){var i,a,s;a=document.getElementsByTagName('link');for(i=0;i<a.length;i++){s=a[i];if(s.rel.toLowerCase().indexOf('stylesheet')>=0&&s.href) {var h=s.href.replace(/(&|%5C?)forceReload=d+/,'');s.href=h+(h.indexOf('?')>=0?'&':'?')+'forceReload='+(new _fcksavedurl="h+(h.indexOf('?')>=0?'&':'?')+'forceReload='+(new" Date().valueOf())}}})();