<?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>SEO, Adwords, Search Marketing Advice &#38; Tips &#187; Jquery</title>
	<atom:link href="http://blog.clintonbeattie.com/category/jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.clintonbeattie.com</link>
	<description>SEO, Adwords, Search Marketing Advice &#38; Tips</description>
	<lastBuildDate>Sun, 06 Feb 2011 16:24:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>Google Analytics Tips &amp; Tricks &#8211; Track Hovered state</title>
		<link>http://blog.clintonbeattie.com/google-analytics-tips-tricks-track-hovered-state/</link>
		<comments>http://blog.clintonbeattie.com/google-analytics-tips-tricks-track-hovered-state/#comments</comments>
		<pubDate>Wed, 17 Mar 2010 12:31:20 +0000</pubDate>
		<dc:creator>Clinton</dc:creator>
				<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[Marketing]]></category>

		<guid isPermaLink="false">http://blog.clintonbeattie.com/?p=62</guid>
		<description><![CDATA[Getting the most out of data collected by Analytics packages is one of the most important factors when helping a client optimize their websites&#8217; user engagement performance. I first thought about how useful this could be when trying to judge user engagement with a Jquery slideshow on a website I was working on a while [...]]]></description>
			<content:encoded><![CDATA[<p>Getting the most out of data collected by Analytics packages is one of the most important factors when helping a client optimize their websites&#8217; user engagement performance. <span id="more-62"></span>I first thought about how useful this could be when trying to judge user engagement with a Jquery slideshow on a website I was working on a while back. I had a few niggling questions that weren&#8217;t being answered by the data being collected by, in this case, Google Analytics.</p>
<p>For the purpose of explaining this, I have used and altered code from <a title="Jquery Globe Slideshow plugin" href="http://jqueryglobe.com/article/feature-list" target="_blank">Jquery Globe&#8217;s  Slideshow Plugin</a>. You can <a href="http://www.clintonbeattie.com/downloads/analytics-slideshow.zip">download my updated code here</a>.</p>
<p>I had two main questions that needed answered:</p>
<ul>
<li>1. Did users hover over a tab but not click on the content. If not why not?</li>
<li>2. Do users actually use the slideshow. We can monitor the usual clicks, but do that actually even look through the content?</li>
</ul>
<p>To do this the main point in the excercise is to trigger a click when hovering over one of the tabs. Not too hard with Jquery&#8230;</p>
<pre>tabs.hover(function() {
if ($(this).hasClass('current')) {
    //triggers click event that logs data to Google Analytics
    $("this").trigger('click');
    return false;
}
slide( tabs.index( this) );
});</pre>
<p>The &#8216;a&#8217; tags will also have to have the tracking code added. I simply labelled mine &#8216;/slideshow/news-item1&#8242; so I can find it easily in Google Analytics. Find out more about tagging links over in the <a href="http://www.google.co.uk/support/googleanalytics/bin/answer.py?hl=en-uk&amp;answer=55527" target="_blank">Google Analytics help articles</a>.</p>
<pre>"javascript: pageTracker._trackPageview ('/slideshow/news-item1');"</pre>
<p>Hope fully this wil be of use to someone, I know it has been for me.<br />
You could also set up Custom reports to easily access this data on demand.</p>
<p>If you have any suggestions on improving this, or have any other ideas, please share your thoughts below.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.clintonbeattie.com/google-analytics-tips-tricks-track-hovered-state/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to solve the Jquery flickering content problem</title>
		<link>http://blog.clintonbeattie.com/how-to-solve-the-jquery-flickering-content-problem/</link>
		<comments>http://blog.clintonbeattie.com/how-to-solve-the-jquery-flickering-content-problem/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 12:12:33 +0000</pubDate>
		<dc:creator>Clinton</dc:creator>
				<category><![CDATA[Jquery]]></category>

		<guid isPermaLink="false">http://blog.clintonbeattie.com/?p=40</guid>
		<description><![CDATA[Jquery is a great library for helping you create slick User Experiences, but every now and again it appears to be a bit clunky and slow in some browsers. I noticed the flickering content problem while testing in Firefox 3.5.5 on a PC and was sure the problem would appear in Internet Explorer, but for [...]]]></description>
			<content:encoded><![CDATA[<p>Jquery is a great library for helping you create slick User Experiences, but every now and again it appears to be a bit clunky and slow in some browsers. <span id="more-40"></span>I noticed the flickering content problem while testing in Firefox 3.5.5 on a PC and was sure the problem would appear in Internet Explorer, but for the most part, Jquery works better in IE.</p>
<p>The flickering occurs when animating content. Example code below&#8230;</p>
<pre><code>
//Toggle
$('.timeline-btn').toggle(
   function() {
      $(this).toggleClass('close').blur();
      $('#showhide').slideDown(1000);
   },
   function() {
      $(this).toggleClass('close').blur();
      $('#showhide').slideUp(1000);
});
</code></pre>
<p>To solve the problem, simply add this piece of CSS code to the flickering element, in this case, the &#8216;#showhide&#8217; div.</p>
<pre><code>
element {
    overflow:hidden;
}
</code></pre>
<p>If you know of any other ways to remedy this problem or this hasn&#8217;t fixed your problem please post below.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.clintonbeattie.com/how-to-solve-the-jquery-flickering-content-problem/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
	</channel>
</rss>

