ourlil.com

A web site for tutti noi (all of us!)

  • Home
  • About
  • About – sample
  • Healing Christofer – Fun’-Raiser
    • Gallery
  • JP’s Page

Archive for the ‘Browsers’ Category

Let’s make the web faster – Google Code

Wednesday, June 24th, 2009

Let’s make the web faster – Google Code.

Some choice excerpts:

CSS: Using every declaration just once

Using every CSS declaration only once is an effective way to reduce file size of style sheets. It’s not a trivial optimization technique though: Watch over the cascade and adjust your editing workflow.

HTTP caching

Web pages can load much faster on repeated visits if the resources come from the cache. Learn about two groups of HTTP headers that make all the difference.

Optimizing web graphics

Optimizing your web illustrations, icons, and graphics is one of the simplest yet most effective ways to decrease your page load time. In this tutorial, we discuss image file formats and optimize some real Google graphics for faster download on the web.

Tags: CSS, HTML, images, js, optimization
Posted in Browsers, coding, javascript | Comments Off

IEBlog : Site Compatibility and IE8

Friday, March 20th, 2009

IEBlog : Site Compatibility and IE8

Here’re a couple of methods for coding to IE8 (new hacks! d’oh!):

Initial CSS Property Values

Unset properties on the currentStyle object now return their initial value. Relying on the old initial values for CSS properties such as z-index can cause problems. This is the root cause of issues with the ASP.NET menu control. SOLUTION: Perform a check for both the backwards compatible value and the standardized initial value.
var zIndex = elm.currentStyle.zIndex;
if(zIndex == 0) {
// custom code
}
var zIndex = elm.currentStyle.zIndex;
if(zIndex == 0 || zIndex == “auto”) {
// custom code
}

Posted in Browsers, Hacks | Comments Off

Vic Gundotra HTML5 offline feature for iPhone 3G and HTC Magic

Wednesday, February 18th, 2009

This is probably the future of web development. Web browsers with built-in database and app cache via HTML5, enabling cross-platform look & feel, as well as execution. Wow!

YouTube Preview Image

Tags: html5, standards, Trends
Posted in Browsers | Comments Off

Mozilla Fennec 1.0a1 Alpha

Friday, October 17th, 2008

Fennec looks interesting:

http://www.vimeo.com/1981300

Tags: Firefox, Mobile, Mozilla
Posted in Browsers, Firefox | Comments Off

Firefox to get faster JavaScript

Friday, August 22nd, 2008

Firefox to get massive JavaScript performance boostJavaScript SpiderMonkey improvements

Mozilla is leveraging an impressive new optimization technique to bring a big performance boost to the Firefox JavaScript engine. The code was merged today (but is not yet ready to be enabled by default in the nightly builds) and is planned for inclusion in Firefox 3.1, the next incremental update of the open-source web browser.   

 

Tags: browser, Firefox, javascript js, Mozilla
Posted in Browsers, Firefox, Mozilla, javascript | Comments Off

CSS Hacks and IE7

Thursday, May 29th, 2008

This is a really great article on how to hack IE7. CSS Hacks and IE7

  • The Child Selector
  • This selector uses a “>” symbol as a “combinator” that is placed between two parts of a CSS selector, and indicates that the target of the rule is the element on the right side of the “>” combinator, but only when that element is a direct child of the element to the left of the combinator. Thus, the selector table>td can never target any element, because TD’s are never direct children of tables, only of TR’s. On the other hand, the selector tr>td would select every TD on the page, since all TD’s are direct children of TR’s.

    The main difference between the Child combinator and the familiar space combinator is that the space combinator is a “descendant” combinator, meaning that the element to the right of the space only needs to be between the tags of the element on the left to be selected. So with the selector table td, all TD’s will selected, since TD’s always fall between the tag pair of one table or another.

    The Child combinator is quite useful for targeting rules to direct children of an element, without also targeting the more deeply nested descendants as well. Unfortunately, up until IE7 there was no point in using it for its intended purpose, since so few of the viewing public would get the benefits of the styling.

  • The Adjacent Sibling Selector
    • This selector is a “+” combinator symbol placed between parts of a selector, and is very similar to the Child combinator. The only difference between the two is that while the Child combinator points to direct children of an element, the Adjacent Sibling combinator points to an element which directly follows another element in the source.

      Thus the selector tr+td cannot select anything, because no TD ever directly follows a TR. Instead, TD’s are contained inside TR’s, and that is not considered to be “following” the TR. However, the selector tr+tr would select any TR that directly followed another TR, which means that every TR within a table would be selected except for the very first TR in that table.

      Get it? An adjacent sibling element not only follows its previous sibling, but is also completely separate from it. Further, if two DIV’s are in sequence and each contains a paragraph, those two paragraphs are not considered siblings, because they reside in different parent elements. The fact that one follows another means nothing unless the following sibling starts at the same point where the previous sibling ends.

  • Star HTML

Oh, you want to know about that structural thing? Well, the hack that uses it is called the star-html hack, and it works by taking advantage of an oddity in Explorer’s treatment of the Document Object Model, or DOM for short. Simply stated, all web pages start with a root element called html, which then contains two children, the head and the body elements. Those two then contain other children, and so forth.

  • Most browsers obey this arrangement, but Explorer for both Win and Mac do not. They seem to think there is a mysterious element enclosing the html element! It’s pretty strange, but in fact this extra outer “root” element has no apparent ill effects on web pages, and remained unnoticed for years, until Edwardson Tan began experimenting with CSS selectors. He found that a selector written as * html  .targetelement would apply the styles to .targetelement, but only for the IE browsers.

    Think about it. That star is the “universal” selector, so it points to any element, but it comes before html. Therefore, the full selector in effect says: “Select .targetelement when it is contained within html, and when html is contained within any other element”.

Tags: CSS
Posted in Browsers, Hacks, MSIE, Trends, Web 2.0, WebTech, quirk, standards | Comments Off

URL Hacking: Generate Charts On-the-Fly with Googles API

Monday, December 10th, 2007

URL Hacking: Generate Charts On-the-Fly with Googles API

Pretty nifty! (more…)

Posted in Browsers, G, Mashup, Trends, Web 2.0, WebTech | Comments Off

Can Web 2.0 Evolve Into An Enterprise Technology?

Tuesday, October 30th, 2007

Web 2.0 Impact ChartGrowing Pains: Can Web 2.0 Evolve Into An Enterprise Technology? — Web 2.0 — InformationWeek

Wikis, mashups, social networking, and even Second Life can have a place in business, but they need to improve legacy interoperability–and IT needs to overcome its skepticism.

Posted in Blogs, Browsers, HTML, Interactive Team, Mashup, Trends, Web 2.0, WebTech, nifty, standards | Comments Off

XPath Visualizer for Mozilla

Wednesday, October 17th, 2007

XPath Visualizer for MozillaThe XPath Visualizer for Mozilla can help you build XPath queries without leaving your web browser.

Posted in Browsers, nifty, xml, xpath | Comments Off

Yahoo! UI Library: Graded Browser Support

Friday, September 28th, 2007

Yahoo! UI Library: Graded Browser Support

A-Grade Browser Support is probably what we should adopt, as well.

Posted in Browsers, CSS, Freedom, HTML, Interactive Team, WebTech, Windoze | Comments Off

<< Previous

  •  

    March 2010
    S M T W T F S
    « Feb    
     123456
    78910111213
    14151617181920
    21222324252627
    28293031  
  • Pages

    • About
    • About – sample
    • Healing Christofer – Fun’-Raiser
      • Gallery
    • JP’s Page
  • Archives

    • February 2010
    • November 2009
    • August 2009
    • July 2009
    • June 2009
    • May 2009
    • March 2009
    • February 2009
    • January 2009
    • December 2008
    • October 2008
    • September 2008
    • August 2008
    • July 2008
    • June 2008
    • May 2008
    • April 2008
    • March 2008
    • February 2008
    • December 2007
    • October 2007
    • September 2007
    • August 2007
    • July 2007
    • June 2007
    • May 2007
  • Categories

  • Favorites

    Here're a few sites I like to visit:
    • WPMU.org
    • Holy Shmoly
    • AppleInsider.com
  • Meta

    • Log in
    • Entries RSS
    • Comments RSS
    • WordPress.org

Copyright © 2010 - ourlil.com | Entries (RSS) | Comments (RSS)

WordPress theme designed by web design