<?xml version="1.0" encoding="UTF-8"?> <rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" ><channel><title>Jolora</title> <atom:link href="http://www.jolora.co.uk/feed/" rel="self" type="application/rss+xml" /><link>http://www.jolora.co.uk</link> <description>Graphic &#38; Web Design North Wales</description> <lastBuildDate>Tue, 08 Jun 2010 18:28:36 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/> <item><title>Apple&#8217;s HTML5 Endorsement</title><link>http://www.jolora.co.uk/articles/apples-html-endorsement/</link> <comments>http://www.jolora.co.uk/articles/apples-html-endorsement/#comments</comments> <pubDate>Sun, 06 Jun 2010 18:22:19 +0000</pubDate> <dc:creator>Joe</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[Web Design]]></category> <category><![CDATA[acid3]]></category> <category><![CDATA[Apple]]></category> <category><![CDATA[css3]]></category> <category><![CDATA[HTML5]]></category> <category><![CDATA[Web Standards]]></category> <category><![CDATA[Webkit]]></category><guid isPermaLink="false">http://www.jolora.co.uk/?p=414</guid> <description><![CDATA[Today I stumbled across this: http://www.apple.com/html5/ Apple has begun to use HTML5 as a marketing tool now: Every new Apple mobile device and every new Mac — along with the latest version of Apple’s Safari web browser — supports web standards including HTML5, CSS3, and JavaScript. These web standards are open, reliable, highly secure, and efficient. [...]]]></description> <content:encoded><![CDATA[<p>Today I stumbled across this: http://www.apple.com/html5/ Apple has begun to use HTML5 as a marketing tool now:</p><blockquote><p>Every new Apple mobile device and every new Mac — along with the latest version of Apple’s Safari web browser — supports web standards including HTML5, CSS3, and JavaScript. These web standards are open, reliable, highly secure, and efficient. They allow web designers and developers to create advanced graphics, typography, animations, and transitions. Standards aren’t add-ons to the web. They are the web. And you can start using them today.</p></blockquote><p><span id="more-414"></span>Although I&#8217;m cynical enough to remember that this is just another punch in the fight between Apple and Adobe (Web standards and Flash) I can&#8217;t help but feel excited that a company with the kind of influence that apple holds is pushing forward future standards. What&#8217;s more, it&#8217;s also worth noting that Apple is doing more than just talking &#8211; they really are putting their money where their mouth is with Safari scoring 100% on the Acid3 test for quite a while now whilst Microsoft Inertnet Explorer 8 can only claim a pitiful 20%.</p><p>With Apple&#8217;s support it won&#8217;t be long before client&#8217;s start approaching web designers with requests for CSS3 transitions, non-flash video and SVG etc. What a place the internet would be then!</p> ]]></content:encoded> <wfw:commentRss>http://www.jolora.co.uk/articles/apples-html-endorsement/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>HTML5 Placeholder Attribute</title><link>http://www.jolora.co.uk/articles/html5-placeholder-attribute/</link> <comments>http://www.jolora.co.uk/articles/html5-placeholder-attribute/#comments</comments> <pubDate>Sun, 02 May 2010 18:34:43 +0000</pubDate> <dc:creator>Joe</dc:creator> <category><![CDATA[Coding]]></category> <category><![CDATA[Web Design]]></category> <category><![CDATA[HTML5]]></category> <category><![CDATA[Javascript]]></category> <category><![CDATA[jQuery]]></category><guid isPermaLink="false">http://www.jolora.co.uk/?p=70</guid> <description><![CDATA[One of my favourite little tidbits in the HTML5 spec is the placeholder attribute. Placeholders, or inline labels, are a very common piece of functionality that I see people attempting to tackle with languages like Javascript. Obviously, it&#8217;s not ideal to approach this scenario with Javascript so it&#8217;s definitely a welcome addition to the HTML [...]]]></description> <content:encoded><![CDATA[<p>One of my favourite little tidbits in the HTML5 spec is the placeholder attribute. Placeholders, or inline labels, are a very common piece of functionality that I see people attempting to tackle with languages like Javascript. Obviously, it&#8217;s not ideal to approach this scenario with Javascript so it&#8217;s definitely a welcome addition to the HTML spec.<span id="more-70"></span></p><p>Consider the following example as shown on the <a href="http://dev.w3.org/html5/spec/Overview.html#the-placeholder-attribute">HTML5 spec</a>:</p><pre class="code"><code class="html">
&lt;fieldset&gt;
 &lt;legend&gt;Mail Account&lt;/legend&gt;
 &lt;p&gt;&lt;label&gt;Name: &lt;input type="text" name="fullname" placeholder="John Ratzenberger"&gt;&lt;/label&gt;&lt;/p&gt;
 &lt;p&gt;&lt;label&gt;Address: &lt;input type="email" name="address" placeholder="john@example.net"&gt;&lt;/label&gt;&lt;/p&gt;
 &lt;p&gt;&lt;label&gt;Password: &lt;input type="password" name="password"&gt;&lt;/label&gt;&lt;/p&gt;
 &lt;p&gt;&lt;label&gt;Description: &lt;input type="text" name="desc" placeholder="My Email Account"&gt;&lt;/label&gt;&lt;/p&gt;
&lt;/fieldset&gt;
</code>
</pre><p>I tried this attribute out for the first time quite a while back and was more than pleased to see the result in Safari. Unfortunately the problem as always was other browsers. Fortunately there is a <a href="http://plugins.jquery.com/project/placeholder">jQuery plugin</a> which deals with this problem and also offers some really useful extended functionality. Eventually jQuery won&#8217;t be needed at all but in the meantime it means there&#8217;s no excuse to leave placeholders out of forms that can benefit.</p><p>I&#8217;ve heard a few discussions regarding the proper use of the placeholder attribute, especially in regards to its position as a replacement to &lt;label&gt;. I don&#8217;t believe there should be any confusion on this matter, especially considering the <a href="http://dev.w3.org/html5/spec/Overview.html#the-placeholder-attribute">W3C</a>&#8217;s very concise explanation:</p><blockquote><p>The placeholder attribute represents a <em>short</em> hint (a word or short phrase) intended to aid the user with data entry. A hint could be a sample value or a brief description of the expected format. [...] The placeholder attribute should not be used as an alternative to a label.</p></blockquote><p>Also, ff a small hint isn&#8217;t enough for your input fields then you should probably consider using a title attribute instead.</p><p>Placeholders always make for a great finishing touch to any HTML form so enjoy them!</p> ]]></content:encoded> <wfw:commentRss>http://www.jolora.co.uk/articles/html5-placeholder-attribute/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Why your &#8216;Broken&#8217; iPhone is Good for Web Designers</title><link>http://www.jolora.co.uk/articles/apple-versus-adobe-flash/</link> <comments>http://www.jolora.co.uk/articles/apple-versus-adobe-flash/#comments</comments> <pubDate>Fri, 30 Apr 2010 20:26:23 +0000</pubDate> <dc:creator>Joe</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[Web Design]]></category> <category><![CDATA[Adobe]]></category> <category><![CDATA[Apple]]></category> <category><![CDATA[Flash]]></category> <category><![CDATA[HTML5]]></category> <category><![CDATA[iPhone]]></category> <category><![CDATA[Web Standards]]></category><guid isPermaLink="false">http://www.jolora.co.uk/?p=320</guid> <description><![CDATA[There have been a lot of mutterings ever since the release of the original iPhone about Apple's decision to exclude Adobe Flash support. After all these years Steve Jobs has finally explained some of his reasoning behind this controversial decision in 'Thoughts on Flash'.]]></description> <content:encoded><![CDATA[<p>There have been a lot of mutterings ever since the release of the original iPhone about Apple&#8217;s decision to exclude Adobe Flash support. After all these years Steve Jobs has finally explained some of his reasoning behind this controversial decision in <a href="http://www.apple.com/hotnews/thoughts-on-flash/">&#8216;Thoughts on Flash&#8217;</a>. Regardless of whether the decision was motivated for business reasons or on principle, one fact remains: the decision is good for the web design industry.<span id="more-320"></span></p><p>At Jolora we have also made a decision from day 1 to not work with Flash. What was once a huge crowd pleaser back in the 90s is in our opinion now holding back progression on the internet. Besides, we&#8217;re yet to meet a Flash-like project that we couldn&#8217;t tackle successfully with open standards such as Javascript. Our focus has always been on open technologies such as Javascript and HTML5 and by the sounds of it, Apple shares this philosophy:</p><blockquote><p>&#8220;HTML5, the new web standard that has been adopted by Apple, Google and many others, lets web developers create advanced graphics, typography, animations and transitions without relying on third party browser plug-ins (like Flash).&#8221;</p></blockquote><p>Although its still a long way off its &#8216;official&#8217; release, HTML5 is already on the verge of becoming a major part of web development, with its place in some of the web&#8217;s most innovative sites and tools (including Google Wave). There are many small steps that forward-thinking design agencies are beginning to make to ease the transition but as ever HTML5 is currently squeezing through the bottleneck that is Microsoft&#8217;s Internet Explorer.</p><p>The age of the loading and splash pages are over &#8211; the future is HTML5, CSS3, degradable javascript and many other open standards such as SVG. Apple should be applauded for leading the way (at least in terms of web technologies) and Adobe (of whom we are in fact big fans) should be shifting its focus from Flash towards utilising open standards to their fullest potential. This is not to say that the web would be entirely better off without competition driven progress &#8211; but in this case web developers need to take a universal in favour of open standards.</p> ]]></content:encoded> <wfw:commentRss>http://www.jolora.co.uk/articles/apple-versus-adobe-flash/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>IE9 &#8211; Microsoft&#8217;s Attempt at Appeasing Web Designers</title><link>http://www.jolora.co.uk/articles/ie9-microsofts-web-designers/</link> <comments>http://www.jolora.co.uk/articles/ie9-microsofts-web-designers/#comments</comments> <pubDate>Tue, 13 Apr 2010 09:22:31 +0000</pubDate> <dc:creator>Joe</dc:creator> <category><![CDATA[Coding]]></category> <category><![CDATA[Software]]></category> <category><![CDATA[acid3]]></category> <category><![CDATA[css3]]></category> <category><![CDATA[HTML5]]></category> <category><![CDATA[ie9]]></category> <category><![CDATA[microsoft]]></category><guid isPermaLink="false">http://www.jolora.co.uk/?p=184</guid> <description><![CDATA[For many years Microsoft has been the thorn in web designer&#8217;s collective backside, but as the worst offender (IE6) begins to lose ground in the &#8216;browser wars&#8217; has it become time for Microsoft to try and win some friends back? With the release of the Internet Explorer 9 platform preview Microsoft has taken it&#8217;s first small [...]]]></description> <content:encoded><![CDATA[<p>For many years Microsoft has been the thorn in web designer&#8217;s collective backside, but as the worst offender (IE6) begins to lose ground in the &#8216;browser wars&#8217; has it become time for Microsoft to try and win some friends back?</p><p>With the release of the <a href="http://ie.microsoft.com/testdrive/">Internet Explorer 9 platform preview</a> Microsoft has taken it&#8217;s first small step towards earning back a little respect from web designers. Finally, with better support for CSS3, SVG and HTML5 as well as a dramatically improved javascript engine, perhaps the next arrival of this dreaded lineage of browsers isn&#8217;t one to fear.<span id="more-184"></span></p><p>Possibly the biggest news is the <a href="http://acid3.acidtests.org/">Acid3</a> test result of 55 out of 100. This result has been heralded as a triumph, but considering Safari 4, released back in June of last year has a score of 100 out of 100 is 55 such a boasting point for a company with the resources Microsoft has at its disposal? Of course there is bound to be some further improvement before the final release of IE9 but is it really good enough to be that far behind?</p><p>Personally, I think we&#8217;ve come to expect so little from Microsoft on the web front that I think developers are just relieved that there has been at least <em>some</em> progress. It would be unfair to cast the final judgement yet on IE9, but in truth, I think that Microsoft will still have to do better if IE9 is to compete for our affections with the likes of Firefox, Chrome and Safari.</p> ]]></content:encoded> <wfw:commentRss>http://www.jolora.co.uk/articles/ie9-microsofts-web-designers/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Desktop Wallpaper &#8211; Kingfisher Digital Painting</title><link>http://www.jolora.co.uk/articles/desktop-wallpaper-kingfisher-digital-painting/</link> <comments>http://www.jolora.co.uk/articles/desktop-wallpaper-kingfisher-digital-painting/#comments</comments> <pubDate>Thu, 08 Apr 2010 11:04:59 +0000</pubDate> <dc:creator>Laura</dc:creator> <category><![CDATA[Freebies]]></category> <category><![CDATA[Wallpapers]]></category><guid isPermaLink="false">http://www.jolora.co.uk/?p=111</guid> <description><![CDATA[Desktop wallpapers are a brilliant source of inspiration as well as fun, so sometimes it&#8217;s nice to have a change. That&#8217;s why I&#8217;m giving away my latest digital painting as a wallpaper for free to our readers. Simply choose your screen resolution from the list below and you&#8217;re good to go!1920&#215;1200 pixels 1920&#215;1080 pixels 1680&#215;1050 pixels 1440&#215;900 pixels 1280&#215;1024 [...]]]></description> <content:encoded><![CDATA[<p>Desktop wallpapers are a brilliant source of inspiration as well as fun, so sometimes it&#8217;s nice to have a change. That&#8217;s why I&#8217;m giving away my latest digital painting as a wallpaper for free to our readers. Simply choose your screen resolution from the list below and you&#8217;re good to go!</p><p><a href="http://www.jolora.co.uk/wp-content/uploads/2010/04/kingfisher-1920x1200.jpg" class="wallpaper"><img class="alignnone size-full wp-image-127" title="Kingfisher Wallpaper Preview" src="http://www.jolora.co.uk/wp-content/uploads/2010/04/kingfisher.jpg" alt="Kingfisher Wallpaper Preview" width="610" height="381" /></a><span id="more-111"></span></p><ul><li><a href="http://www.jolora.co.uk/wp-content/uploads/2010/04/kingfisher-1920x1200.jpg">1920&#215;1200 pixels</a></li><li><a href="http://www.jolora.co.uk/wp-content/uploads/2010/04/kingfisher-1920x1080.jpg">1920&#215;1080 pixels</a></li><li><a href="http://www.jolora.co.uk/wp-content/uploads/2010/04/kingfisher-1680x1050.jpg">1680&#215;1050 pixels</a></li><li><a href="http://www.jolora.co.uk/wp-content/uploads/2010/04/kingfisher-1440x900.jpg">1440&#215;900 pixels</a></li><li><a href="http://www.jolora.co.uk/wp-content/uploads/2010/04/kingfisher-1280x1024.jpg">1280&#215;1024 pixels</a></li><li><a href="http://www.jolora.co.uk/wp-content/uploads/2010/04/kingfisher-1280x800.jpg">1280&#215;800 pixels</a></li><li><a href="http://www.jolora.co.uk/wp-content/uploads/2010/04/kingfisher-1024x768.jpg">1024&#215;768 pixels</a></li></ul><p>(Read how to change your desktop background on <a href="http://windows.microsoft.com/en-US/windows7/Change-your-desktop-background-wallpaper" target="_blank">Windows</a> and <a href="http://support.apple.com/kb/ht2478" target="_blank">Mac</a>.)</p> ]]></content:encoded> <wfw:commentRss>http://www.jolora.co.uk/articles/desktop-wallpaper-kingfisher-digital-painting/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>How to Remove Gradient Banding in Photoshop</title><link>http://www.jolora.co.uk/articles/remove-gradient-banding-in-photoshop/</link> <comments>http://www.jolora.co.uk/articles/remove-gradient-banding-in-photoshop/#comments</comments> <pubDate>Wed, 10 Mar 2010 22:30:28 +0000</pubDate> <dc:creator>Laura</dc:creator> <category><![CDATA[Graphic Design]]></category> <category><![CDATA[How To]]></category> <category><![CDATA[Photoshop]]></category> <category><![CDATA[Tutorials]]></category><guid isPermaLink="false">http://www.jolora.co.uk/?p=54</guid> <description><![CDATA[Many of you will have had this problem when working with gradients in Photoshop before, both for screen and print. Gradient banding is when there is a clear line where one color starts and another ends in a gradient, instead of a smooth transition between the range of colours. In this short article I’ll show you [...]]]></description> <content:encoded><![CDATA[<p>Many of you will have had this problem when working with gradients in Photoshop before, both for screen and print. Gradient banding is when there is a clear line where one color starts and another ends in a gradient, instead of a smooth transition between the range of colours.</p><div id="attachment_76" class="wp-caption alignnone" style="width: 620px"><img class="size-full wp-image-76" title="banding-example" src="http://www.jolora.co.uk/wp-content/uploads/2010/04/banding-example.jpg" alt="Example of a gradient with banding" width="610" height="97" /><p class="wp-caption-text">You may not see the banding if your monitor has low contrast</p></div><p>In this short article I’ll show you my method of removing this graphic designer&#8217;s pet peeve.<span id="more-54"></span> Below is a design for a client, I have magnified the problem area so if you look closely you can see the banding in the image.</p><p><img class="alignnone size-full wp-image-92" title="bcard-before" src="http://www.jolora.co.uk/wp-content/uploads/2010/04/bcard-before1.jpg" alt="Graphic showing gradient banding before the method was applied." width="610" height="589" /></p><p>In Photoshop I do the following:</p><ol><li>Duplicate the problem layer by first selecting it from your layers panel and either right clicking and selecting &#8216;duplicate layer&#8217; or by pressing CMD + J (CTRL + J on PC).</li><li>With your new layer duplicate, go to Filter &gt; Add Noise and choose an amount of 2%. Also from the Add Noise dialog turn both &#8216;Gaussian&#8217; and &#8216;Monochromatic&#8217; on before hitting OK.</li><li>Position your new layer duplicate directly above the original problem layer in your layers panel.</li><li>Make sure the new layer duplicate&#8217;s blending mode is set to normal. Now lower the opacity to just before the point at which the banding begins to become visible again. For this example the opacity only needed to be at 8%, but the ideal opacity will vary depending on the strength and colour of the banding. By altering the opacity you should achieve the optimum level at which the banding is not apparent and nor is the noise.</li></ol><p>Here&#8217;s the design after the above method was applied:</p><p><a href="http://www.jolora.co.uk/wp-content/uploads/2010/04/bcard-after1.jpg"><img class="alignnone size-full wp-image-77" title="bcard-after1" src="http://www.jolora.co.uk/wp-content/uploads/2010/04/bcard-after1.jpg" alt="No gradient banding after the method had been applied." width="610" height="589" /></a></p> ]]></content:encoded> <wfw:commentRss>http://www.jolora.co.uk/articles/remove-gradient-banding-in-photoshop/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Introduction to Safari 4&#8217;s Web Inspector</title><link>http://www.jolora.co.uk/articles/introduction-to-safari-web-inspector/</link> <comments>http://www.jolora.co.uk/articles/introduction-to-safari-web-inspector/#comments</comments> <pubDate>Sun, 07 Feb 2010 09:50:26 +0000</pubDate> <dc:creator>Joe</dc:creator> <category><![CDATA[Coding]]></category> <category><![CDATA[Software]]></category> <category><![CDATA[Safari]]></category> <category><![CDATA[Web Inspector]]></category> <category><![CDATA[Webkit]]></category><guid isPermaLink="false">http://jolora.co.uk/beta/?p=26</guid> <description><![CDATA[Until recently, Mozilla Firefox had been my browser of choice, especially when it comes to coding up a site. This is much in part to the phenomenally popular Firebug extension. But over the past couple of months I&#8217;ve found a great reason to switch back to Safari &#8211; the develop menu. Despite its overhaul with the [...]]]></description> <content:encoded><![CDATA[<p>Until recently, <a title="Mozilla Firefox" href="http://www.mozilla.com/firefox/" target="_blank">Mozilla Firefox</a> had been my browser of choice, especially when it comes to coding up a site. This is much in part to the phenomenally popular <a href="http://getfirebug.com/">Firebug</a> extension. But over the past couple of months I&#8217;ve found a great reason to switch back to Safari &#8211; the develop menu.</p><p>Despite its overhaul with the release of Safari 4 back in July, there hasn&#8217;t been very much attention surrounding the Safari develop menu. I thought a brief introduction to this powerful feature would give some other developers another reason to switch to Safari (and I mean <em>brief </em>introduction&#8230; there is no way I have the time to cover every option provided by this extensive tool!)<span id="more-26"></span></p><p>To enable the menu check &#8216;Show Develop menu in menu bar&#8217; in the advanced panel of Safari&#8217;s preferences.</p><p>From the menu you have immediate access to some simple but very useful features such as adjusting the browser&#8217;s user agent or disabling various features enabling easier testing. But probably the most powerful option available from this menu is the Web Inspector.</p><h3>Web Inspector</h3><p>The Web Inspector is probably the feature that Firebug users will feel most familiar with. Simply translated Firebug&#8217;s &#8216;HTML&#8217; and &#8216;CSS&#8217; panels are called &#8216;Elements&#8217; in Web Inspector; &#8216;Script&#8217; remains the same; the DOM section is now built into the properties area of Web Inspector&#8217;s &#8216;Elements&#8217;; and &#8216;Net&#8217; is now known as &#8216;Resources&#8217;. Finally, the console always sits at the bottom of the inspector displaying the number of errors and warnings in the bottom right.</p><h3>Console</h3><p>The console button makes it very easy to quickly pop open and close the console giving easy access to error and warning details as well as the command line itself. Probably one of my favourite new features is the auto-complete feature when using the command line. As you type the console throws suggestions at you, which you can cycle through with the TAB key before accepting with the right arrow key.</p><div id="attachment_44" class="wp-caption alignnone" style="width: 600px"><img class="size-full wp-image-44" title="Safari Console" src="http://jolora.co.uk/wp-content/uploads/2010/04/safari_console.jpg" alt="Auto-complete suggestions in web inspector’s console command line" width="590" height="360" /><p class="wp-caption-text">Auto-complete suggestions in web inspector’s console command line</p></div><p>This is a pretty neat time saving trick, however much command line experience you have. On another note for potential Firebug coverts, the command line is compatible with Firebug&#8217;s own.</p><h3>Elements Panel</h3><p>The Elements panel is probably where I spend most of my time during projects. Much like Firebug&#8217;s HTML and CSS panels, Web Inspector makes it ridiculously easy to try out changes to both areas of your code. However, I think most developers would agree that after using Web Inspector for just a bit you&#8217;ll find it far more intuitive and refined than Firebug&#8217;s editor.</p><div id="attachment_46" class="wp-caption alignnone" style="width: 600px"><img class="size-full wp-image-46" title="Web Inspector Elements" src="http://jolora.co.uk/wp-content/uploads/2010/04/web_inspector_elements.jpg" alt="Web Inspector's Elements Panel  " width="590" height="360" /><p class="wp-caption-text">Web Inspector&#39;s Elements Panel</p></div><p>The &#8216;Styles&#8217; sidebar make it very easy to manage even the most complicated of stylesheets and I often use it to help me cut out unnecessary chunks of code. Also the &#8216;Metrics&#8217; section offers you a handy border box model for your elements which can be edited directly and &#8216;Properties&#8217; gives you a convenient way to browse and edit DOM attributes/properties.</p><p>I also find myself constantly inspecting clicked elements through the use of that little magnifying glass button in the bottom left of the Web Inspector.</p><h3>Resources Panel</h3><p>Every good designer knows that however beautiful a design is, it will only go to waste if visitors don&#8217;t hang around long enough to actually see it render. The most efficient way to improve website loading time is through reducing http requests and file sizes &#8211; both of these are measured through Web Inspector&#8217;s &#8216;Resources Panel&#8217;.</p><div id="attachment_47" class="wp-caption alignnone" style="width: 600px"><img class="size-full wp-image-47" title="Web Inspector Resources Panel" src="http://jolora.co.uk/wp-content/uploads/2010/04/web_inspector_resources.jpg" alt="Web Inspector's Resources Panel" width="590" height="360" /><p class="wp-caption-text">Web Inspector&#39;s Resources Panel</p></div><p>Apart from displaying results in a beautifully efficient manner, the panel also offers you the option to sort results through a variety of parameters including: response time, start time, end time, duration and latency.</p><h3>Scripts Panel</h3><p>I suppose the first thing that should be said about this panel is just how fast it is. It truly is dramatically faster than the tool included with previous versions of Web Inspector. I also find that leaving it enabled all the time doesn&#8217;t appear to have much effect at all on my browsing speed (although I&#8217;m sure some it does have some effect).</p><div id="attachment_49" class="wp-caption alignnone" style="width: 600px"><img class="size-full wp-image-49" title="Web Inspector's Scripts Panel" src="http://jolora.co.uk/wp-content/uploads/2010/04/web_inspector_scripts.jpg" alt="Web Inspector's Scripts Panel" width="590" height="360" /><p class="wp-caption-text">Web Inspector&#39;s Scripts Panel</p></div><p>From this panel you can see all the script resources that are included in the current page. You have standard controls for pausing and resuming scripts and whilst paused you can see the current call-stack and in-scope variables in the sidebar.</p><h3>Profiles Panel</h3><p>Put simply, the &#8216;Profiles&#8217; panel allows you to see a break down of where execution time is spent within your page&#8217;s javascript.</p><div id="attachment_50" class="wp-caption alignnone" style="width: 600px"><img class="size-full wp-image-50" title="Web Inspector's Profiles Panel" src="http://jolora.co.uk/wp-content/uploads/2010/04/web_inspector_profiles.jpg" alt="Web Inspector's Profiles Panel" width="590" height="360" /><p class="wp-caption-text">Web Inspector&#39;s Profiles Panel</p></div><p>The user interface is essentially a sortable chart of results helping you to identify which functions have the largest performance impact on your scripts. I haven&#8217;t had much chance to look beyond the basics of this panel yet but I&#8217;ve found it easy so far to create profiles with the useful record button in the bottom left of the panel. Firebug users will also be happy to find out that the profiler is compatible with Firebug&#8217;s console.profile() and console.profileEnd(). Finally it&#8217;s also very easy to filter results with the focus (the eye) and the exclude (the x) button at the bottom of the panel.</p><h3>Databases Panel</h3><p>I&#8217;ve had very little interaction so far with the Databases panel. Essentially this tool gives developers a way to manage session storage and local storage &#8211; a feature obviously included for those working with the development of HTML5 applications. Unfortunately I have personally been missing a cookies section on this panel, which seems like a strange feature to leave out, but is hopefully just a temporary oversight.</p><h3>Conclusion</h3><p>So I suppose it would be a bit of a cop out to not give an answer now on whether Web Inspector is ready to ease the transition for developers from Firefox to Safari&#8230; but the answer truly is dependant on your requirements. I personally find the small niggles (such as lack of syntax highlighting in css) with Web Inspector worth working through because I&#8217;m much happier designing for webkit over any other engine. Developers who deal more heavily with scripts, databases and the such might understandably prefer to stick with Firebug for now but I&#8217;m confident that in time Web Inspector will make the improvements to cater for everyone.</p> ]]></content:encoded> <wfw:commentRss>http://www.jolora.co.uk/articles/introduction-to-safari-web-inspector/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Database Caching 7/14 queries in 0.013 seconds using disk

Served from: www.jolora.co.uk @ 2010-07-31 09:43:43 -->