Bulletproof & Flexible Layouts Made Simple

Bulletproof & Flexible Layouts Made Simple “Yet Another Multicolumn Layout” (YAML) is an (X)HTML/CSS framework for creating modern and flexible floated layouts. The structure is extremely versatile in its programming and absolutely accessible for end users. Focussed on web standards and accessibility Slim framework core with numerous extensions Robust, flexible layout concept (columns & grids) …

Web Slice Format Specification – Version 0.9

Web Slice Example The following example shows how a Web Slice is defined on a Web page for an auction. Copy <div id=”slice1″> <p>Game System – $66.00</p> <div> <img src=”game.jpg”> <p>Auction ends: <abbr title=”2008-02-28T12:00:00-05:00″>6 hours</abbr></p> </div> <a rel=”feedurl” href=”www.ebay.com/game.xml”>Subscribe to Feed</a> <p>This item updates every <span>15</span> minutes.</p> </div> more http://msdn.microsoft.com/en-us/library/cc304073%28VS.85%29.aspx#_basic

Javascript Expected Identifier Error On Internet Explorer

I googled a little and found this could happen if you included an extra comma in some expressions but that wasn’t my case. Some coffees later I found the offending code was: var class = $(this).parent().attr(‘class’); Yep, class seems to be a reserved word in Internet Explorer, thanks again Microsoft for making web developers lifes …

Jquery bind, multiple events div

<div class=”test”><div class=”inside”><h1>id=”myID.entry[0]”</h1><p>0</p></div></div> <script>$(“div.test”).bind({ click: function(){ $(this).addClass(“active”); //alert(this.nodeName); //alert($(this).text()) }, mouseenter: function(){ $(this).children(‘div.inside’).animate({ top: “20px”, }, “fast”); }, mouseleave: function(){ //$(this).fadeIn(); $(this).children(‘div.inside’).animate({ top: “100px”, }, “fast”); } });</script>